aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-01-27 19:54:03 +0000
committerRichard M. Stallman2007-01-27 19:54:03 +0000
commite14c5251324fe34a79b49e8577c032b92fe00290 (patch)
tree26832651e3582074fe34a614b09c9724631eb52c
parent9b469b61cadb15629a29a6cde5ed1889a12637d2 (diff)
downloademacs-e14c5251324fe34a79b49e8577c032b92fe00290.tar.gz
emacs-e14c5251324fe34a79b49e8577c032b92fe00290.zip
(awk-font-lock-keywords): Add "do".
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/obsolete/awk-mode.el2
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 @@
12007-01-27 Richard Stallman <rms@gnu.org>
2
3 * obsolete/awk-mode.el (awk-font-lock-keywords): Add "do".
4
52007-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
12007-01-27 Chong Yidong <cyd@stupidchicken.com> 112007-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.