Lines Matching refs:newline
9 # unescaped <newline> is reached.
11 # When an escaped <newline> (one preceded by a <backslash>) is found
17 # When an escaped <newline> is found in a command line in a
19 # <newline>, and the next line, except that the first character of
22 # When an escaped <newline> is found in an include line or in a
27 # <backslash><anything other than newline> is not mentioned. I think
29 # except before <newline>.
36 # newline in a variable assignment simply stores the backslashes as part
37 # of the value, and treats the newline as though it was not escaped.
38 # Similarly, an even number of backslashes before a newline in a
40 # does not escape the newline. This is compatible with GNU make.
86 # In a variable assignment, when the sequence <backslash><newline> occurs at
110 # Double-backslash-newline in a variable setting.
111 # Both backslashes should be taken literally, and the newline is NOT escaped.
137 # Triple-backslash-newline in a variable setting.
138 # First two should be taken literally, and last should escape the newline.
164 # Backslash-newline in a variable setting, plus any amount of white space
188 # Backslash-newline in a command is retained.
208 # When backslash-newline appears at the end of a command script,
209 # both the backslash and the newline should be passed to the shell.
210 # The shell should elide the backslash-newline.
215 echo :'command ending with backslash-newline'; \
219 # Double-backslash-newline in a command.
220 # Both backslashes are retained, but the newline is not escaped.
234 # Triple-backslash-newline in a command is retained.