aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-09-12 03:07:52 +0000
committerGlenn Morris2008-09-12 03:07:52 +0000
commitdf321f09135179e786c0da17a4a3fb0d573d8216 (patch)
tree1c860f0e97e7d49fb9a8042deae2c6bb8adf6f53
parent59b5f3a80dc673fc19707162bad426601fa7ca4a (diff)
downloademacs-df321f09135179e786c0da17a4a3fb0d573d8216.tar.gz
emacs-df321f09135179e786c0da17a4a3fb0d573d8216.zip
(sh-font-lock-open-heredoc): Doc fix.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/sh-script.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 88bf1442469..701cfca5aed 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-09-12 Glenn Morris <rgm@gnu.org>
2
3 * indent.el (indent-line-function): Doc fix.
4 * progmodes/sh-script.el (sh-font-lock-open-heredoc): Doc fix.
5
12008-09-11 Martin Rudalics <rudalics@gmx.at> 62008-09-11 Martin Rudalics <rudalics@gmx.at>
2 7
3 * window.el (pop-to-buffer): If the window for buffer-or-name is 8 * window.el (pop-to-buffer): If the window for buffer-or-name is
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index d4e4658b6f2..5d0f1cbb97f 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -1003,7 +1003,7 @@ If non-nil INDENTED indicates that the EOF was indented."
1003(defun sh-font-lock-open-heredoc (start string) 1003(defun sh-font-lock-open-heredoc (start string)
1004 "Determine the syntax of the \\n after a <<EOF. 1004 "Determine the syntax of the \\n after a <<EOF.
1005START is the position of <<. 1005START is the position of <<.
1006STRING is the actual word used as delimiter (f.ex. \"EOF\"). 1006STRING is the actual word used as delimiter (e.g. \"EOF\").
1007INDENTED is non-nil if the here document's content (and the EOF mark) can 1007INDENTED is non-nil if the here document's content (and the EOF mark) can
1008be indented (i.e. a <<- was used rather than just <<). 1008be indented (i.e. a <<- was used rather than just <<).
1009Point is at the beginning of the next line." 1009Point is at the beginning of the next line."