diff options
author | Miles Bader <miles@gnu.org> | 2005-01-22 21:39:38 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2005-01-22 21:39:38 +0000 |
commit | 18643d1d412928c57690271c8b7a65e50503441f (patch) | |
tree | a9303ce501314fc316c20ca29928b2fa168d0421 /lisp/case-table.el | |
parent | cfa4901a57cc9920eec0401d8b33abac7d3f8e5b (diff) | |
parent | ddff82cf89b20912729a1483da3f28608b44115a (diff) | |
download | emacs-18643d1d412928c57690271c8b7a65e50503441f.tar.gz |
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-4
Merge from emacs--cvs-trunk--0
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-41
- miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-46
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-47
Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-4
Merge from emacs--cvs-trunk--0
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-5
Update from CVS: exi/gnus-faq.texi ([4.1]): Typo.
* miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-6
Update from CVS
Diffstat (limited to 'lisp/case-table.el')
-rw-r--r-- | lisp/case-table.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/case-table.el b/lisp/case-table.el index 71e82bcabef..747e90c28f5 100644 --- a/lisp/case-table.el +++ b/lisp/case-table.el @@ -95,6 +95,8 @@ It also modifies `standard-syntax-table' to give them the syntax of word constituents." (aset table uc lc) (aset table lc lc) + ;; Clear out the extra slots so that they will be + ;; recomputed from the main (downcase) table. (set-char-table-extra-slot table 0 nil) (set-char-table-extra-slot table 1 nil) (set-char-table-extra-slot table 2 nil) @@ -108,6 +110,8 @@ that will be used as the downcase part of a case table. It also modifies `standard-syntax-table'. SYNTAX should be \" \", \"w\", \".\" or \"_\"." (aset table c c) + ;; Clear out the extra slots so that they will be + ;; recomputed from the main (downcase) table. (set-char-table-extra-slot table 0 nil) (set-char-table-extra-slot table 1 nil) (set-char-table-extra-slot table 2 nil) |