(scheme-font-lock-keywords-2): Handle named-let.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Sun, 20 Feb 2005 12:07:08 +0000 (12:07 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Sun, 20 Feb 2005 12:07:08 +0000 (12:07 +0000)
lisp/ChangeLog
lisp/progmodes/scheme.el

index 5a1494c..c218d5a 100644 (file)
@@ -1,3 +1,7 @@
+2005-02-20  Thien-Thi Nguyen  <ttn@gnu.org>
+
+       * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
+
 2005-02-20  Jonathan Yavner  <jyavner@member.fsf.org>
 
        * ses.el (undo-more): restore defadvice, but only the part that
index bf0f18d..d9ffea8 100644 (file)
@@ -330,6 +330,10 @@ See `run-hooks'."
               "map" "syntax" "syntax-rules") t)
        "\\>") 1)
       ;;
+      ;; It wouldn't be Scheme w/o named-let.
+      '("(let\\s-+\\(\\sw+\\)"
+        (1 font-lock-function-name-face))
+      ;;
       ;; David Fox <fox@graphics.cs.nyu.edu> for SOS/STklos class specifiers.
       '("\\<<\\sw+>\\>" . font-lock-type-face)
       ;;