diff options
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 |