aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-01-21 00:26:39 +0000
committerRichard M. Stallman2005-01-21 00:26:39 +0000
commit2cf2fc27c89fdfc244416eebcdc30ca7c1234561 (patch)
tree16ffc2e08a67456e633c84b46c3fe6aadce27b3c
parenta15252fdfb18b102d25c3c90e866036073a1c3de (diff)
downloademacs-2cf2fc27c89fdfc244416eebcdc30ca7c1234561.tar.gz
emacs-2cf2fc27c89fdfc244416eebcdc30ca7c1234561.zip
Comment changes.
-rw-r--r--lisp/case-table.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/case-table.el b/lisp/case-table.el
index 1936977c779..094c1d6e62a 100644
--- a/lisp/case-table.el
+++ b/lisp/case-table.el
@@ -110,6 +110,8 @@ word constituents."
110 (setq lc (set-case-syntax-1 lc)) 110 (setq lc (set-case-syntax-1 lc))
111 (aset table uc lc) 111 (aset table uc lc)
112 (aset table lc lc) 112 (aset table lc lc)
113 ;; Clear out the extra slots so that they will be
114 ;; recomputed from the main (downcase) table.
113 (set-char-table-extra-slot table 0 nil) 115 (set-char-table-extra-slot table 0 nil)
114 (set-char-table-extra-slot table 1 nil) 116 (set-char-table-extra-slot table 1 nil)
115 (set-char-table-extra-slot table 2 nil) 117 (set-char-table-extra-slot table 2 nil)
@@ -124,6 +126,8 @@ It also modifies `standard-syntax-table'.
124SYNTAX should be \" \", \"w\", \".\" or \"_\"." 126SYNTAX should be \" \", \"w\", \".\" or \"_\"."
125 (setq c (set-case-syntax-1 c)) 127 (setq c (set-case-syntax-1 c))
126 (aset table c c) 128 (aset table c c)
129 ;; Clear out the extra slots so that they will be
130 ;; recomputed from the main (downcase) table.
127 (set-char-table-extra-slot table 0 nil) 131 (set-char-table-extra-slot table 0 nil)
128 (set-char-table-extra-slot table 1 nil) 132 (set-char-table-extra-slot table 1 nil)
129 (set-char-table-extra-slot table 2 nil) 133 (set-char-table-extra-slot table 2 nil)