diff options
| author | Thien-Thi Nguyen | 2005-02-20 12:07:08 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2005-02-20 12:07:08 +0000 |
| commit | 220715073c1d151419ef58505e9a88e5a75cfeec (patch) | |
| tree | c14d85b070b311c33a0e3b633d665a015a061222 | |
| parent | eedeacb3074baad8ce752a506f9f435c98e42ff4 (diff) | |
| download | emacs-220715073c1d151419ef58505e9a88e5a75cfeec.tar.gz emacs-220715073c1d151419ef58505e9a88e5a75cfeec.zip | |
(scheme-font-lock-keywords-2): Handle named-let.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/scheme.el | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5a1494c1deb..c218d5af314 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let. | ||
| 4 | |||
| 1 | 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org> | 5 | 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org> |
| 2 | 6 | ||
| 3 | * ses.el (undo-more): restore defadvice, but only the part that | 7 | * ses.el (undo-more): restore defadvice, but only the part that |
diff --git a/lisp/progmodes/scheme.el b/lisp/progmodes/scheme.el index bf0f18d5bba..d9ffea852d1 100644 --- a/lisp/progmodes/scheme.el +++ b/lisp/progmodes/scheme.el | |||
| @@ -330,6 +330,10 @@ See `run-hooks'." | |||
| 330 | "map" "syntax" "syntax-rules") t) | 330 | "map" "syntax" "syntax-rules") t) |
| 331 | "\\>") 1) | 331 | "\\>") 1) |
| 332 | ;; | 332 | ;; |
| 333 | ;; It wouldn't be Scheme w/o named-let. | ||
| 334 | '("(let\\s-+\\(\\sw+\\)" | ||
| 335 | (1 font-lock-function-name-face)) | ||
| 336 | ;; | ||
| 333 | ;; David Fox <fox@graphics.cs.nyu.edu> for SOS/STklos class specifiers. | 337 | ;; David Fox <fox@graphics.cs.nyu.edu> for SOS/STklos class specifiers. |
| 334 | '("\\<<\\sw+>\\>" . font-lock-type-face) | 338 | '("\\<<\\sw+>\\>" . font-lock-type-face) |
| 335 | ;; | 339 | ;; |