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:
Noam Postavsky 2016-07-02 19:47:32 -04:00
parent 80e2044a7f
commit 113d1e2bef

View file

@ -2000,16 +2000,16 @@ Does not preserve point."
Continued lines can either be indented as \"one long wrapped line\" without Continued lines can either be indented as \"one long wrapped line\" without
paying attention to the actual syntactic structure, as in: paying attention to the actual syntactic structure, as in:
for f \ for f \\
in a; do \ in a; do \\
toto; \ toto; \\
done done
or as lines that just don't have implicit semi-colons between them, as in: or as lines that just don't have implicit semi-colons between them, as in:
for f \ for f \\
in a; do \ in a; do \\
toto; \ toto; \\
done done
With `always' you get the former behavior whereas with nil you get the latter. With `always' you get the former behavior whereas with nil you get the latter.