]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove two functions obsolete since Emacs 23
authorStefan Kangas <stefan@marxist.se>
Fri, 3 Dec 2021 18:25:59 +0000 (19:25 +0100)
committerStefan Kangas <stefan@marxist.se>
Fri, 3 Dec 2021 18:27:16 +0000 (19:27 +0100)
* lisp/international/mule-cmds.el (unify-8859-on-encoding-mode)
(unify-8859-on-decoding-mode): Remove functions obsolete since
Emacs 23.
* lisp/nxml/xsd-regexp.el: Doc fix.

etc/NEWS
lisp/international/mule-cmds.el
lisp/nxml/xsd-regexp.el

index 8dadd3d268d3a0ad261644bc7d304e4029a452a8..4ed3350c0ed07e063dd3b4db11b90465ed8b9bb0 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -767,6 +767,9 @@ Use 'exif-parse-file' and 'exif-field' instead.
 ** 'insert-directory' alternatives should not change the free disk space line.
 This change is now applied in 'dired-insert-directory'.
 
+** Some functions obsolete since Emacs 23 have been removed:
+'unify-8859-on-encoding-mode', 'unify-8859-on-decoding-mode'.
+
 \f
 * Lisp Changes in Emacs 29.1
 
index 9f3f2a208495c41619fec86f7e7dbc7c3b6a763c..b84d9e0823d2762723c75ae51fd73c491cd22cf3 100644 (file)
@@ -3077,22 +3077,6 @@ on encoding."
                 0))
        (substring enc2 i0 i2)))))
 
-;; Backwards compatibility.  These might be better with :init-value t,
-;; but that breaks loadup.
-(define-minor-mode unify-8859-on-encoding-mode
-  "Exists only for backwards compatibility."
-  :group 'mule
-  :global t)
-;; Doc said "obsolete" in 23.1, this statement only added in 24.1.
-(make-obsolete 'unify-8859-on-encoding-mode "don't use it." "23.1")
-
-(define-minor-mode unify-8859-on-decoding-mode
-  "Exists only for backwards compatibility."
-  :group 'mule
-  :global t)
-;; Doc said "obsolete" in 23.1, this statement only added in 24.1.
-(make-obsolete 'unify-8859-on-decoding-mode "don't use it." "23.1")
-
 (defvar ucs-names nil
   "Hash table of cached CHAR-NAME keys to CHAR-CODE values.")
 
index f07ca6657eda47bfd3e7a4dc057927b9a3fcb9b3..3c29803ab97d559efe028bbffab365406e22a7b7 100644 (file)
@@ -52,9 +52,6 @@
 ;; or a character translatable to such a character (i.e a character
 ;; for which `encode-char' will return non-nil).
 ;;
-;; Using unify-8859-on-decoding-mode is probably a good idea here
-;; (and generally with XML and other Unicode-oriented formats).
-;;
 ;; Unfortunately, this means that this package is currently useless
 ;; for CJK characters, since there's no mule-unicode charset for the
 ;; CJK ranges of Unicode.  We should devise a workaround for this