aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaroly Lorentey2005-02-21 13:10:42 +0000
committerKaroly Lorentey2005-02-21 13:10:42 +0000
commita3ed96394abf826ed794282886c05db599e801df (patch)
treec15bf0b3d9cda35825ae4e19ff3145edca88f9bd
parent4e15f072da4b9d715b1c935a1d464553d7d52c2f (diff)
parentc4a166f16f6ecf5b7b5787a1243bb6427de93070 (diff)
downloademacs-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/ChangeLog8
-rw-r--r--lisp/progmodes/scheme.el4
-rw-r--r--lisp/textmodes/ispell.el6
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 @@
12005-02-21 Kenichi Handa <handa@m17n.org>
2
3 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
4
52005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
6
7 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
8
12005-02-20 Jonathan Yavner <jyavner@member.fsf.org> 92005-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
671If you want OTHERCHARS to be empty, use the empty string. 671If you want OTHERCHARS to be empty, use the empty string.
672Hint: regexp syntax requires the hyphen to be declared first here. 672Hint: regexp syntax requires the hyphen to be declared first here.
673 673
674CASECHAS, NOT-CASECHARS, and OTHERCHARS must be a unibyte string
675containing bytes of CHARACTER-SET. In addition, if they contain
676a non-ASCII byte, the regular expression must be a single
677`character set' construct that doesn't specify a character range
678for non-ASCII bytes.
679
674MANY-OTHERCHARS-P is non-nil when multiple OTHERCHARS are allowed in a word. 680MANY-OTHERCHARS-P is non-nil when multiple OTHERCHARS are allowed in a word.
675Otherwise only a single OTHERCHARS character is allowed to be part of any 681Otherwise only a single OTHERCHARS character is allowed to be part of any
676single word. 682single word.