X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/e1e89a70b9a54fa5dc2365398ef4df2eb5944b2a..a85732e683f6e3b24426f36d4869135bad18d5af:/lisp/case-table.el diff --git a/lisp/case-table.el b/lisp/case-table.el index 77ebe857ff..e9697655f3 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)