diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2014-06-19 21:05:40 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2014-06-19 21:05:40 -0400 |
commit | 500dce5f4d2a08570177d9b1019fa922f07e8508 (patch) | |
tree | 4e36479096a23e12e7855610aebd8dd8f5f89f5a /test | |
parent | 2c25d5e6216d556a85f9c01bba5671f41637e11f (diff) | |
download | emacs-500dce5f4d2a08570177d9b1019fa922f07e8508.tar.gz |
* lisp/emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
(smie-indent--hanging-p): Use it.
* lisp/progmodes/sh-script.el (sh-set-shell): Set it.
Fixes: debbugs:17621
Diffstat (limited to 'test')
-rwxr-xr-x | test/indent/shell.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/indent/shell.sh b/test/indent/shell.sh index 74985a401d4..ed6bcf8da3a 100755 --- a/test/indent/shell.sh +++ b/test/indent/shell.sh @@ -25,7 +25,11 @@ esac { # bug#17621 foo1 && - foo2 && + foo2 && + bar + + foo1 && \ + foo2 && \ bar } |