Mercurial > emacs
changeset 59860:f4eeaf4ca800
(set-upcase-syntax, set-downcase-syntax): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 02 Feb 2005 02:43:13 +0000 |
parents | 2661642dbef6 |
children | 26ac46ab8abe |
files | lisp/case-table.el |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/case-table.el Wed Feb 02 01:13:50 2005 +0000 +++ b/lisp/case-table.el Wed Feb 02 02:43:13 2005 +0000 @@ -140,6 +140,7 @@ 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 @@ (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)