summaryrefslogtreecommitdiff
path: root/lisp/case-table.el
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2005-02-02 02:43:13 +0000
committerKenichi Handa <handa@m17n.org>2005-02-02 02:43:13 +0000
commit1b2acc58b0dee384a95842a037bba0e48abe3c8e (patch)
treeb8f3f98cbc7c27ccd15684d4f98339074648095b /lisp/case-table.el
parentc8db570ad47c8b20b3108fa75c40af0ff2480f87 (diff)
downloademacs-1b2acc58b0dee384a95842a037bba0e48abe3c8e.tar.gz
(set-upcase-syntax, set-downcase-syntax): Fix previous change.
Diffstat (limited to 'lisp/case-table.el')
-rw-r--r--lisp/case-table.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/case-table.el b/lisp/case-table.el
index 77ebe857ff2..e9697655f38 100644
--- a/lisp/case-table.el
+++ b/lisp/case-table.el
@@ -140,6 +140,7 @@ It also modifies `standard-syntax-table' to give them the syntax of
word constituents."
(setq uc (set-case-syntax-1 uc))
(setq lc (set-case-syntax-1 lc))
+ (aset table lc lc)
(let ((up (get-upcase-table table)))
(aset up uc uc)
(aset up lc uc))
@@ -158,6 +159,8 @@ word constituents."
(setq lc (set-case-syntax-1 lc))
(aset table uc lc)
(aset table lc lc)
+ (let ((up (get-upcase-table table)))
+ (aset up uc uc))
;; Clear out the extra slots so that they will be
;; recomputed from the main (downcase) table and upcase table.
(set-char-table-extra-slot table 1 nil)