aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-11-11 05:31:11 +0000
committerRichard M. Stallman1995-11-11 05:31:11 +0000
commita91f616d88e96d5b3931e2ee524d6da2d1bdb527 (patch)
tree1fafb3760a9f0730c9df1dd6655cd665682ca8e5
parent16cf6ab20b0076d0aca0229b5346bc0ae67c85d8 (diff)
downloademacs-a91f616d88e96d5b3931e2ee524d6da2d1bdb527.tar.gz
emacs-a91f616d88e96d5b3931e2ee524d6da2d1bdb527.zip
(sh-mode): as above. Use page-delimiter rather than literal "^L".
-rw-r--r--lisp/progmodes/sh-script.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index b9b2e152f69..819e4fd69f4 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -656,7 +656,7 @@ with your script for an edit-interpret-debug cycle."
656 (indent-rigidly b (point) sh-indentation))) 656 (indent-rigidly b (point) sh-indentation)))
657 skeleton-end-hook (lambda () 657 skeleton-end-hook (lambda ()
658 (or (eolp) (newline) (indent-relative))) 658 (or (eolp) (newline) (indent-relative)))
659 paragraph-start "^$\\|^ " 659! paragraph-start (concat page-delimiter "\\|$")
660 paragraph-separate paragraph-start 660 paragraph-separate paragraph-start
661 comment-start "# " 661 comment-start "# "
662 comint-dynamic-complete-functions sh-dynamic-complete-functions 662 comint-dynamic-complete-functions sh-dynamic-complete-functions