# HG changeset patch # User Kenichi Handa # Date 1107312193 0 # Node ID f4eeaf4ca8007d28e1440187620349b93a14d688 # Parent 2661642dbef6ba69823ee33307cae3c1b82ec999 (set-upcase-syntax, set-downcase-syntax): Fix previous change. diff -r 2661642dbef6 -r f4eeaf4ca800 lisp/case-table.el --- 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)