diff options
author | Leo Liu <sdl.web@gmail.com> | 2012-03-16 20:26:22 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2012-03-16 20:26:22 +0800 |
commit | 50e94f0c5da4a7560d821304124e9bd2962b4d6f (patch) | |
tree | 6cbb45ca183af288c93b61ba2b90060cb703ea37 /lisp/font-lock.el | |
parent | 6f09f6ed089766e1bd113d343576da7dd963740b (diff) | |
download | emacs-50e94f0c5da4a7560d821304124e9bd2962b4d6f.tar.gz |
* lisp/font-lock.el (lisp-font-lock-keywords-2): Add letrec.
Diffstat (limited to 'lisp/font-lock.el')
-rw-r--r-- | lisp/font-lock.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 4222791705b..b65828ca1d7 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -2284,7 +2284,7 @@ in which C preprocessor directives are used. e.g. `asm-mode' and `(;; Control structures. Emacs Lisp forms. (,(concat "(" (regexp-opt - '("cond" "if" "while" "while-no-input" "let" "let*" + '("cond" "if" "while" "while-no-input" "let" "let*" "letrec" "prog" "progn" "progv" "prog1" "prog2" "prog*" "inline" "lambda" "save-restriction" "save-excursion" "save-selected-window" "save-window-excursion" |