diff options
| author | Karoly Lorentey | 2005-02-21 13:10:42 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2005-02-21 13:10:42 +0000 |
| commit | a3ed96394abf826ed794282886c05db599e801df (patch) | |
| tree | c15bf0b3d9cda35825ae4e19ff3145edca88f9bd | |
| parent | 4e15f072da4b9d715b1c935a1d464553d7d52c2f (diff) | |
| parent | c4a166f16f6ecf5b7b5787a1243bb6427de93070 (diff) | |
| download | emacs-a3ed96394abf826ed794282886c05db599e801df.tar.gz emacs-a3ed96394abf826ed794282886c05db599e801df.zip | |
Merged from miles@gnu.org--gnu-2005 (patch 117-118)
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-117
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-118
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-298
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/progmodes/scheme.el | 4 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5a1494c1deb..57c64a66da2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2005-02-21 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring. | ||
| 4 | |||
| 5 | 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 6 | |||
| 7 | * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let. | ||
| 8 | |||
| 1 | 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org> | 9 | 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org> |
| 2 | 10 | ||
| 3 | * ses.el (undo-more): restore defadvice, but only the part that | 11 | * 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 | ;; |
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index d5171125ae8..a28764b54a1 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -671,6 +671,12 @@ regular expression \"[']\" for OTHERCHARS. Then \"they're\" and | |||
| 671 | If you want OTHERCHARS to be empty, use the empty string. | 671 | If you want OTHERCHARS to be empty, use the empty string. |
| 672 | Hint: regexp syntax requires the hyphen to be declared first here. | 672 | Hint: regexp syntax requires the hyphen to be declared first here. |
| 673 | 673 | ||
| 674 | CASECHAS, NOT-CASECHARS, and OTHERCHARS must be a unibyte string | ||
| 675 | containing bytes of CHARACTER-SET. In addition, if they contain | ||
| 676 | a non-ASCII byte, the regular expression must be a single | ||
| 677 | `character set' construct that doesn't specify a character range | ||
| 678 | for non-ASCII bytes. | ||
| 679 | |||
| 674 | MANY-OTHERCHARS-P is non-nil when multiple OTHERCHARS are allowed in a word. | 680 | MANY-OTHERCHARS-P is non-nil when multiple OTHERCHARS are allowed in a word. |
| 675 | Otherwise only a single OTHERCHARS character is allowed to be part of any | 681 | Otherwise only a single OTHERCHARS character is allowed to be part of any |
| 676 | single word. | 682 | single word. |