diff options
| author | Andreas Schwab | 2007-12-17 20:32:48 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2007-12-17 20:32:48 +0000 |
| commit | 67f2eaf15fcdb3f73e983c19fd6a5b1054558e0d (patch) | |
| tree | 3a1a94528a91d07dd80a378a90df388e86c92474 /lisp | |
| parent | d7358b92b65b940e84294dd0242f5a55ec4c3d37 (diff) | |
| download | emacs-67f2eaf15fcdb3f73e983c19fd6a5b1054558e0d.tar.gz emacs-67f2eaf15fcdb3f73e983c19fd6a5b1054558e0d.zip | |
(sh-font-lock-syntactic-keywords): Fix
comment typo.
Diffstat (limited to 'lisp')
| -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 fe01023428f..02b51f7ae0b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-12-17 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Fix | ||
| 4 | comment typo. | ||
| 5 | |||
| 1 | 2007-12-16 Michael Albinus <michael.albinus@gmx.de> | 6 | 2007-12-16 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 7 | ||
| 3 | * net/dbus.el (dbus-name-owner-changed-handler): Use | 8 | * net/dbus.el (dbus-name-owner-changed-handler): Use |
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 1b0bbc14b65..ed3fce12d60 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el | |||
| @@ -1097,7 +1097,7 @@ subshells can nest." | |||
| 1097 | ;; change the syntax, so we have to tell syntax-ppss that the states it | 1097 | ;; change the syntax, so we have to tell syntax-ppss that the states it |
| 1098 | ;; has just computed will need to be recomputed. | 1098 | ;; has just computed will need to be recomputed. |
| 1099 | (sh-font-lock-flush-syntax-ppss-cache) | 1099 | (sh-font-lock-flush-syntax-ppss-cache) |
| 1100 | ;; Make sure $@ and @? are correctly recognized as sexps. | 1100 | ;; Make sure $@ and $? are correctly recognized as sexps. |
| 1101 | ("\\$\\([?@]\\)" 1 ,sh-st-symbol) | 1101 | ("\\$\\([?@]\\)" 1 ,sh-st-symbol) |
| 1102 | ;; Find HEREDOC starters and add a corresponding rule for the ender. | 1102 | ;; Find HEREDOC starters and add a corresponding rule for the ender. |
| 1103 | (sh-font-lock-here-doc | 1103 | (sh-font-lock-here-doc |