aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2003-01-03 20:12:17 +0000
committerDave Love2003-01-03 20:12:17 +0000
commit7de350175d5cef9faac20a05d908af62d9e7d9b9 (patch)
tree2bbb85bb2d25f6cc2236f0ee9072ab358b4104b0
parent237e59935a55a6e31008e2fecb4ad0179929ba80 (diff)
downloademacs-7de350175d5cef9faac20a05d908af62d9e7d9b9.tar.gz
emacs-7de350175d5cef9faac20a05d908af62d9e7d9b9.zip
(ucs-unify-8859, ucs-fragment-8859):
Call optimize-char-coding-system-table.
-rw-r--r--lisp/international/ucs-tables.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/international/ucs-tables.el b/lisp/international/ucs-tables.el
index 01ec4ec0873..9a14da44a01 100644
--- a/lisp/international/ucs-tables.el
+++ b/lisp/international/ucs-tables.el
@@ -1202,7 +1202,8 @@ everything on input operations."
1202 ;; Update the table of what encodes to what. 1202 ;; Update the table of what encodes to what.
1203 (register-char-codings coding-system table) 1203 (register-char-codings coding-system table)
1204 (coding-system-put coding-system 'translation-table-for-encode table))) 1204 (coding-system-put coding-system 'translation-table-for-encode table)))
1205 (add-hook 'minibuffer-setup-hook 'ucs-minibuffer-setup))) 1205 (add-hook 'minibuffer-setup-hook 'ucs-minibuffer-setup))
1206 (optimize-char-coding-system-table))
1206 1207
1207(defun ucs-fragment-8859 (for-encode for-decode) 1208(defun ucs-fragment-8859 (for-encode for-decode)
1208 "Undo the unification done by `ucs-unify-8859'. 1209 "Undo the unification done by `ucs-unify-8859'.
@@ -1265,7 +1266,8 @@ unification on input operations."
1265 (set-char-table-parent safe nil)) 1266 (set-char-table-parent safe nil))
1266 (coding-system-put coding-system 'translation-table-for-encode nil))) 1267 (coding-system-put coding-system 'translation-table-for-encode nil)))
1267 (optimize-char-coding-system-table) 1268 (optimize-char-coding-system-table)
1268 (remove-hook 'minibuffer-setup-hook 'ucs-minibuffer-setup))) 1269 (remove-hook 'minibuffer-setup-hook 'ucs-minibuffer-setup))
1270 (optimize-char-coding-system-table))
1269 1271
1270(defun ucs-insert (arg) 1272(defun ucs-insert (arg)
1271 "Insert the Emacs character representation of the given Unicode. 1273 "Insert the Emacs character representation of the given Unicode.