GNU bug report logs -
#16159
[PATCH] Better paragraph separation for sh-mode
Previous Next
Reported by: Daniel Colascione <dancol <at> dancol.org>
Date: Mon, 16 Dec 2013 10:51:01 UTC
Severity: minor
Tags: patch
Fixed in version 24.4
Done: Glenn Morris <rgm <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
This change should make sure that M-q doesn't combine a comment line
with the initial shebang of a shell script.
$ bzr diff
=== modified file 'lisp/progmodes/sh-script.el'
--- lisp/progmodes/sh-script.el 2013-11-09 10:49:42 +0000
+++ lisp/progmodes/sh-script.el 2013-12-16 10:46:04 +0000
@@ -1589,7 +1589,7 @@
(lambda () (or (eolp) (newline) (indent-relative))))
(setq-local paragraph-start (concat page-delimiter "\\|$"))
- (setq-local paragraph-separate paragraph-start)
+ (setq-local paragraph-separate (concat paragraph-start "\\|#!/"))
(setq-local comment-start "# ")
(setq-local comment-start-skip "#+[\t ]*")
(setq-local local-abbrev-table sh-mode-abbrev-table)
This bug report was last modified 11 years and 157 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.