diff options
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/obsolete/awk-mode.el | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index be45f701d76..42302ff9d38 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2007-01-27 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * obsolete/awk-mode.el (awk-font-lock-keywords): Add "do". | ||
| 4 | |||
| 5 | 2007-01-27 Guanpeng Xu <herberteuler@hotmail.com> | ||
| 6 | |||
| 7 | * add-log.el (add-log-current-defun): Skip the semicolon ``;'' for | ||
| 8 | enum/union/struct/class definition. | ||
| 9 | Revert change to call `forward-sexp' multiple times. | ||
| 10 | |||
| 1 | 2007-01-27 Chong Yidong <cyd@stupidchicken.com> | 11 | 2007-01-27 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 12 | ||
| 3 | * files.el (hack-local-variables-confirm): Don't keep trying to | 13 | * files.el (hack-local-variables-confirm): Don't keep trying to |
diff --git a/lisp/obsolete/awk-mode.el b/lisp/obsolete/awk-mode.el index d85abc855f4..06376f96dc2 100644 --- a/lisp/obsolete/awk-mode.el +++ b/lisp/obsolete/awk-mode.el | |||
| @@ -72,7 +72,7 @@ | |||
| 72 | ;; | 72 | ;; |
| 73 | ;; Keywords. | 73 | ;; Keywords. |
| 74 | (regexp-opt | 74 | (regexp-opt |
| 75 | '("BEGIN" "END" "break" "continue" "delete" "exit" "else" "for" | 75 | '("BEGIN" "END" "break" "continue" "delete" "do" "exit" "else" "for" |
| 76 | "getline" "if" "next" "print" "printf" "return" "while") 'words) | 76 | "getline" "if" "next" "print" "printf" "return" "while") 'words) |
| 77 | ;; | 77 | ;; |
| 78 | ;; Builtins. | 78 | ;; Builtins. |