summaryrefslogtreecommitdiff
path: root/lisp/font-lock.el
diff options
context:
space:
mode:
authorLeo Liu <sdl.web@gmail.com>2012-03-16 20:26:22 +0800
committerLeo Liu <sdl.web@gmail.com>2012-03-16 20:26:22 +0800
commit50e94f0c5da4a7560d821304124e9bd2962b4d6f (patch)
tree6cbb45ca183af288c93b61ba2b90060cb703ea37 /lisp/font-lock.el
parent6f09f6ed089766e1bd113d343576da7dd963740b (diff)
downloademacs-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.el2
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"