diff options
| author | Richard M. Stallman | 2007-01-27 19:54:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-01-27 19:54:03 +0000 |
| commit | e14c5251324fe34a79b49e8577c032b92fe00290 (patch) | |
| tree | 26832651e3582074fe34a614b09c9724631eb52c | |
| parent | 9b469b61cadb15629a29a6cde5ed1889a12637d2 (diff) | |
| download | emacs-e14c5251324fe34a79b49e8577c032b92fe00290.tar.gz emacs-e14c5251324fe34a79b49e8577c032b92fe00290.zip | |
(awk-font-lock-keywords): Add "do".
| -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. |