mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
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
@ -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…
Reference in New Issue
Block a user