diff options
author | Richard M. Stallman <rms@gnu.org> | 2007-01-27 19:54:03 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2007-01-27 19:54:03 +0000 |
commit | e14c5251324fe34a79b49e8577c032b92fe00290 (patch) | |
tree | 26832651e3582074fe34a614b09c9724631eb52c | |
parent | 9b469b61cadb15629a29a6cde5ed1889a12637d2 (diff) | |
download | emacs-e14c5251324fe34a79b49e8577c032b92fe00290.tar.gz |
(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 @@ +2007-01-27 Richard Stallman <rms@gnu.org> + + * obsolete/awk-mode.el (awk-font-lock-keywords): Add "do". + +2007-01-27 Guanpeng Xu <herberteuler@hotmail.com> + + * add-log.el (add-log-current-defun): Skip the semicolon ``;'' for + enum/union/struct/class definition. + Revert change to call `forward-sexp' multiple times. + 2007-01-27 Chong Yidong <cyd@stupidchicken.com> * 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 @@ ;; ;; Keywords. (regexp-opt - '("BEGIN" "END" "break" "continue" "delete" "exit" "else" "for" + '("BEGIN" "END" "break" "continue" "delete" "do" "exit" "else" "for" "getline" "if" "next" "print" "printf" "return" "while") 'words) ;; ;; Builtins. |