aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-07-03 22:37:38 +0000
committerDave Love2002-07-03 22:37:38 +0000
commit256d0feff9ae8c9e3f561186a3ef7d84c53a50b5 (patch)
tree0a24e12622dfad40deec5d0c0a558b2932f6ed16
parent2d449de9af9909e4f911a3433ee8a09f28d58501 (diff)
downloademacs-256d0feff9ae8c9e3f561186a3ef7d84c53a50b5.tar.gz
emacs-256d0feff9ae8c9e3f561186a3ef7d84c53a50b5.zip
(set-char-table-default): Make obsolete.
-rw-r--r--lisp/international/mule.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 42112a216e6..2150870aa39 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -1442,6 +1442,7 @@ character, say TO-ALT, FROM is also translated to TO-ALT."
1442 (let ((to-alt (aref table to))) 1442 (let ((to-alt (aref table to)))
1443 (if (and to-alt (> to-i 0)) 1443 (if (and to-alt (> to-i 0))
1444 (setq to to-alt))) 1444 (setq to to-alt)))
1445 ;; Fixme: set-char-table-default is now a no-op.
1445 (if (> from-i 0) 1446 (if (> from-i 0)
1446 (set-char-table-default table from to) 1447 (set-char-table-default table from to)
1447 (aset table from to)) 1448 (aset table from to))
@@ -1540,6 +1541,8 @@ the table in `translation-table-vector'."
1540(setq ignore-relative-composition 1541(setq ignore-relative-composition
1541 (make-char-table 'ignore-relative-composition)) 1542 (make-char-table 'ignore-relative-composition))
1542 1543
1544(make-obsolete 'set-char-table-default
1545 "Generic characters no longer exist" "22.1")
1543;;; 1546;;;
1544(provide 'mule) 1547(provide 'mule)
1545 1548