diff options
author | Alan Mackenzie <acm@muc.de> | 2011-12-13 21:13:51 +0000 |
---|---|---|
committer | Alan Mackenzie <acm@muc.de> | 2011-12-13 21:13:51 +0000 |
commit | 898169a2d88c3538cdfd41feb0b16267165065bd (patch) | |
tree | cb1baea0c5c1232e07d49bbe54d0a4a333f19c4c /lisp/progmodes/cc-awk.el | |
parent | 13d49cbb266f0ead789944508ad0872129885609 (diff) | |
download | emacs-898169a2d88c3538cdfd41feb0b16267165065bd.tar.gz |
Add the switch statement to AWK Mode.
Diffstat (limited to 'lisp/progmodes/cc-awk.el')
-rw-r--r-- | lisp/progmodes/cc-awk.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/cc-awk.el b/lisp/progmodes/cc-awk.el index f44b34ac351..ef67a18d807 100644 --- a/lisp/progmodes/cc-awk.el +++ b/lisp/progmodes/cc-awk.el @@ -894,9 +894,9 @@ std\\(err\\|in\\|out\\)\\|user\\)\\)\\>\ ;; Keywords. (concat "\\<" (regexp-opt - '("BEGIN" "END" "break" "continue" "delete" "do" "else" - "exit" "for" "getline" "if" "in" "next" "nextfile" - "return" "while") + '("BEGIN" "END" "break" "case" "continue" "default" "delete" + "do" "else" "exit" "for" "getline" "if" "in" "next" + "nextfile" "return" "switch" "while") t) "\\>") ;; Builtins. |