Fix escaping in sh-indent-after-continuation docstr
* lisp/progmodes/sh-script.el (sh-indent-after-continuation): Properly escape backslashes in docstring (Bug#23046).
This commit is contained in:
parent
80e2044a7f
commit
113d1e2bef
1 changed files with 6 additions and 6 deletions
|
@ -2000,16 +2000,16 @@ Does not preserve point."
|
|||
Continued lines can either be indented as \"one long wrapped line\" without
|
||||
paying attention to the actual syntactic structure, as in:
|
||||
|
||||
for f \
|
||||
in a; do \
|
||||
toto; \
|
||||
for f \\
|
||||
in a; do \\
|
||||
toto; \\
|
||||
done
|
||||
|
||||
or as lines that just don't have implicit semi-colons between them, as in:
|
||||
|
||||
for f \
|
||||
in a; do \
|
||||
toto; \
|
||||
for f \\
|
||||
in a; do \\
|
||||
toto; \\
|
||||
done
|
||||
|
||||
With `always' you get the former behavior whereas with nil you get the latter.
|
||||
|
|
Loading…
Add table
Reference in a new issue