summaryrefslogtreecommitdiff
path: root/lisp/progmodes/sh-script.el
diff options
context:
space:
mode:
authorNoam Postavsky <npostavs@gmail.com>2016-07-02 19:47:32 -0400
committerNoam Postavsky <npostavs@gmail.com>2016-07-02 19:59:10 -0400
commit113d1e2beffd09c497d4af47752da27fbc025ead (patch)
treeb8ce2297e16556ca0043f49f8b228f906756d11a /lisp/progmodes/sh-script.el
parent80e2044a7f19719720d330e2796c9dfe5471e100 (diff)
downloademacs-113d1e2beffd09c497d4af47752da27fbc025ead.tar.gz
Fix escaping in sh-indent-after-continuation docstr
* lisp/progmodes/sh-script.el (sh-indent-after-continuation): Properly escape backslashes in docstring (Bug#23046).
Diffstat (limited to 'lisp/progmodes/sh-script.el')
-rw-r--r--lisp/progmodes/sh-script.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index 4f160e1ad6d..f089c81fe56 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -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.