diff options
| author | Thien-Thi Nguyen | 2014-09-28 10:03:48 +0200 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2014-09-28 10:03:48 +0200 |
| commit | 3ff1c9a8ea8e7b792f89b807af056f6bf22c4b43 (patch) | |
| tree | 73a3e18b3a7693e19b958c99f9d21fb6a6d3de4f | |
| parent | bbf5e14b387ee69a360cccefbf77c0bca792aab7 (diff) | |
| download | emacs-3ff1c9a8ea8e7b792f89b807af056f6bf22c4b43.tar.gz emacs-3ff1c9a8ea8e7b792f89b807af056f6bf22c4b43.zip | |
Font-lock `cl-flet*', too.
* lisp/emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2):
Add "flet*" to intermediate var `cl-lib-kw'.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 62f3138c9d1..0d8f7e7a8da 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2014-09-28 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 2 | |||
| 3 | Font-lock `cl-flet*', too. | ||
| 4 | * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): | ||
| 5 | Add "flet*" to intermediate var `cl-lib-kw'. | ||
| 6 | |||
| 1 | 2014-09-27 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2014-09-27 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 8 | ||
| 3 | * epg-config.el (epg-gpg-program): Use the plain program names rather | 9 | * epg-config.el (epg-gpg-program): Use the plain program names rather |
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 57900e39bed..a13baf0ee22 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -233,7 +233,7 @@ | |||
| 233 | "etypecase" "ccase" "ctypecase" "loop" "do" "do*" | 233 | "etypecase" "ccase" "ctypecase" "loop" "do" "do*" |
| 234 | "the" "locally" "proclaim" "declaim" "letf" "go" | 234 | "the" "locally" "proclaim" "declaim" "letf" "go" |
| 235 | ;; "lexical-let" "lexical-let*" | 235 | ;; "lexical-let" "lexical-let*" |
| 236 | "symbol-macrolet" "flet" "destructuring-bind" | 236 | "symbol-macrolet" "flet" "flet*" "destructuring-bind" |
| 237 | "labels" "macrolet" "tagbody" "multiple-value-bind" | 237 | "labels" "macrolet" "tagbody" "multiple-value-bind" |
| 238 | "block" "return" "return-from")) | 238 | "block" "return" "return-from")) |
| 239 | (cl-lib-errs '("assert" "check-type")) | 239 | (cl-lib-errs '("assert" "check-type")) |