aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-05-31 21:55:24 +0000
committerDave Love2002-05-31 21:55:24 +0000
commitd2f613a04a0829353623cccceee81a8c950cbdc9 (patch)
tree63f30a1aa84d516288dd97748116c4c5d2db4458
parent3918e9c9d1a06cb2e0414de81bf45a4594801b1b (diff)
downloademacs-d2f613a04a0829353623cccceee81a8c950cbdc9.tar.gz
emacs-d2f613a04a0829353623cccceee81a8c950cbdc9.zip
(unify-8859-on-encoding-mode)
(unify-8859-on-decoding-mode): Moved from mule.el.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/international/mule-cmds.el10
2 files changed, 19 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f6bcd4860bd..d831527ee5f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,16 @@
12002-05-31 Dave Love <fx@gnu.org> 12002-05-31 Dave Love <fx@gnu.org>
2 2
3 * international/mule-diag.el (describe-character-set): Account for
4 more than two dimensions of possibly different size.
5
6 * international/mule-cmds.el (unify-8859-on-encoding-mode)
7 (unify-8859-on-decoding-mode): Moved from mule.el.
8
3 * international/mule.el (unify-8859-on-encoding-mode) 9 * international/mule.el (unify-8859-on-encoding-mode)
4 (unify-8859-on-decoding-mode): Remove :init-value. 10 (unify-8859-on-decoding-mode): Remove :init-value.
11 (charset-chars): Add optional dimension arg.
12 (unify-8859-on-encoding-mode, unify-8859-on-decoding-mode): Moved
13 to mule-cmds.el.
5 14
62002-05-31 Kenichi Handa <handa@etl.go.jp> 152002-05-31 Kenichi Handa <handa@etl.go.jp>
7 16
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index 437defcd83d..5513f626311 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -2048,5 +2048,15 @@ If CODING-SYSTEM can't safely encode CHAR, return nil."
2048 ;; exclude. 2048 ;; exclude.
2049 (substring enc2 0 i2)))) 2049 (substring enc2 0 i2))))
2050 2050
2051;; Backwards compatibility. These might be better with :init-value t,
2052;; but that breaks loadup.
2053(define-minor-mode unify-8859-on-encoding-mode
2054 "Obsolete."
2055 :group 'mule
2056 :global t)
2057(define-minor-mode unify-8859-on-decoding-mode
2058 "Obsolete."
2059 :group 'mule
2060 :global t)
2051 2061
2052;;; mule-cmds.el ends here 2062;;; mule-cmds.el ends here