* lisp/font-lock.el (lisp-font-lock-keywords-2): Add letrec.

This commit is contained in:
Leo Liu 2012-03-16 20:26:22 +08:00
parent 6f09f6ed08
commit 50e94f0c5d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-03-16 Leo Liu <sdl.web@gmail.com>
* font-lock.el (lisp-font-lock-keywords-2): Add letrec.
2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
* tar-mode.el (tar-mode): Fix saving by conditionally undoing

View file

@ -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"