diff options
| author | Glenn Morris | 2008-09-12 03:07:52 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-09-12 03:07:52 +0000 |
| commit | df321f09135179e786c0da17a4a3fb0d573d8216 (patch) | |
| tree | 1c860f0e97e7d49fb9a8042deae2c6bb8adf6f53 | |
| parent | 59b5f3a80dc673fc19707162bad426601fa7ca4a (diff) | |
| download | emacs-df321f09135179e786c0da17a4a3fb0d573d8216.tar.gz emacs-df321f09135179e786c0da17a4a3fb0d573d8216.zip | |
(sh-font-lock-open-heredoc): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/sh-script.el | 2 |
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 @@ | |||
| 1 | 2008-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 | |||
| 1 | 2008-09-11 Martin Rudalics <rudalics@gmx.at> | 6 | 2008-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. |
| 1005 | START is the position of <<. | 1005 | START is the position of <<. |
| 1006 | STRING is the actual word used as delimiter (f.ex. \"EOF\"). | 1006 | STRING is the actual word used as delimiter (e.g. \"EOF\"). |
| 1007 | INDENTED is non-nil if the here document's content (and the EOF mark) can | 1007 | INDENTED is non-nil if the here document's content (and the EOF mark) can |
| 1008 | be indented (i.e. a <<- was used rather than just <<). | 1008 | be indented (i.e. a <<- was used rather than just <<). |
| 1009 | Point is at the beginning of the next line." | 1009 | Point is at the beginning of the next line." |