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, ann even number of backslashes before a newline in a
40 # does not escape the newline. This is compatible with GNU make.
86 # Backslash-newline in a variable setting is replaced by a single space.
109 # Double-backslash-newline in a variable setting.
110 # Both backslashes should be taken literally, and the newline is NOT escaped.
136 # Triple-backslash-newline in a variable setting.
137 # First two should be taken literally, and last should escape the newline.
163 # Backslash-newline in a variable setting, plus any amount of white space
187 # Backslash-newline in a command is retained.
207 # When backslash-newline appears at the end of a command script,
208 # both the backslash and the newline should be passed to the shell.
209 # The shell should elide the backslash-newline.
214 echo :'command ending with backslash-newline'; \
218 # Double-backslash-newline in a command.
219 # Both backslashes are retained, but the newline is not escaped.
233 # Triple-backslash-newline in a command is retained.