aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-02-10 04:43:50 +0000
committerRichard M. Stallman1994-02-10 04:43:50 +0000
commitfee7a5a2e317058ca24dd629b2f7e3af76e10f49 (patch)
tree763d415e63ecceb32bc48402917e7ecf901a7bed
parent3d9f5ce2fa60e5f09373158c66506ed4f94e992f (diff)
downloademacs-fee7a5a2e317058ca24dd629b2f7e3af76e10f49.tar.gz
emacs-fee7a5a2e317058ca24dd629b2f7e3af76e10f49.zip
(lisp-font-lock-keywords-2): Quote the * in let*.
-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 bef515b1239..b16fa85bcc6 100644
--- a/lisp/font-lock.el
+++ b/lisp/font-lock.el
@@ -465,7 +465,7 @@ This does fairly subdued highlighting.")
465 '(;; 465 '(;;
466 ;; Highlight control structures 466 ;; Highlight control structures
467 ("(\\(cond\\|if\\|when\\|unless\\|[ec]?\\(type\\)?case\\)[ \t\n]" . 1) 467 ("(\\(cond\\|if\\|when\\|unless\\|[ec]?\\(type\\)?case\\)[ \t\n]" . 1)
468 ("(\\(while\\|do\\|let*?\\|flet\\|labels\\|prog[nv12*]?\\)[ \t\n]" . 1) 468 ("(\\(while\\|do\\|let\\*?\\|flet\\|labels\\|prog[nv12*]?\\)[ \t\n]" . 1)
469 ("(\\(catch\\|\\throw\\|block\\|return\\|return-from\\)[ \t\n]" . 1) 469 ("(\\(catch\\|\\throw\\|block\\|return\\|return-from\\)[ \t\n]" . 1)
470 ("(\\(save-restriction\\|save-window-restriction\\)[ \t\n]" . 1) 470 ("(\\(save-restriction\\|save-window-restriction\\)[ \t\n]" . 1)
471 ("(\\(save-excursion\\|unwind-protect\\|condition-case\\)[ \t\n]" . 1) 471 ("(\\(save-excursion\\|unwind-protect\\|condition-case\\)[ \t\n]" . 1)