]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix escaping in sh-indent-after-continuation docstr
authorNoam Postavsky <npostavs@gmail.com>
Sat, 2 Jul 2016 23:47:32 +0000 (19:47 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Sat, 2 Jul 2016 23:59:10 +0000 (19:59 -0400)
* lisp/progmodes/sh-script.el (sh-indent-after-continuation): Properly
escape backslashes in docstring (Bug#23046).

lisp/progmodes/sh-script.el

index 4f160e1ad6ddbae6d3b6d06505b4ce8e950438ff..f089c81fe56f1c50e8b7a1f29467462f51f290a9 100644 (file)
@@ -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.