From b11bef0bea091d0cfa0365bfe3a50a44be9a1bfd Mon Sep 17 00:00:00 2001 From: Hartmut Becker Date: Thu, 18 Sep 2014 23:49:49 +0200 Subject: * job.c: fix make action continuation lines. * vmsjobs.c: fix writing DCL command files when trimming (white spaces and $ signs) especially after a split (command continuation). --- job.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'job.c') diff --git a/job.c b/job.c index f650a53..cb10f64 100644 --- a/job.c +++ b/job.c @@ -1233,6 +1233,8 @@ start_job_command (struct child *child) { if (*s == '"') instring = !instring; + else if (*s == '\\' && !instring && *(s+1) != 0) + s++; else if (*s == '\n' && !instring) { end = s; -- cgit v1.2.3