aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/international/mule-cmds.el11
2 files changed, 13 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c28dc491863..8b3c8196bc8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12012-02-10 Glenn Morris <rgm@gnu.org>
2
3 * international/mule-cmds.el (unify-8859-on-encoding-mode)
4 (unify-8859-on-decoding-mode): Properly mark as obsolete.
5
12012-02-10 Lars Ingebrigtsen <larsi@gnus.org> 62012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
2 7
3 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first 8 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index 378cbc9badd..a7fac427e41 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -1,6 +1,6 @@
1;;; mule-cmds.el --- commands for multilingual environment -*-coding: iso-2022-7bit -*- 1;;; mule-cmds.el --- commands for multilingual environment -*-coding: iso-2022-7bit -*-
2 2
3;; Copyright (C) 1997-2012 Free Software Foundation, Inc. 3;; Copyright (C) 1997-2012 Free Software Foundation, Inc.
4;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 4;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5;; 2005, 2006, 2007, 2008, 2009, 2010, 2011 5;; 2005, 2006, 2007, 2008, 2009, 2010, 2011
6;; National Institute of Advanced Industrial Science and Technology (AIST) 6;; National Institute of Advanced Industrial Science and Technology (AIST)
@@ -2863,13 +2863,18 @@ on encoding."
2863;; Backwards compatibility. These might be better with :init-value t, 2863;; Backwards compatibility. These might be better with :init-value t,
2864;; but that breaks loadup. 2864;; but that breaks loadup.
2865(define-minor-mode unify-8859-on-encoding-mode 2865(define-minor-mode unify-8859-on-encoding-mode
2866 "Obsolete." 2866 "Exists only for backwards compatibility."
2867 :group 'mule 2867 :group 'mule
2868 :global t) 2868 :global t)
2869;; Doc said "obsolete" in 23.1, this statement only added in 24.1.
2870(make-obsolete 'unify-8859-on-encoding-mode "don't use it." "23.1")
2871
2869(define-minor-mode unify-8859-on-decoding-mode 2872(define-minor-mode unify-8859-on-decoding-mode
2870 "Obsolete." 2873 "Exists only for backwards compatibility."
2871 :group 'mule 2874 :group 'mule
2872 :global t) 2875 :global t)
2876;; Doc said "obsolete" in 23.1, this statement only added in 24.1.
2877(make-obsolete 'unify-8859-on-decoding-mode "don't use it." "23.1")
2873 2878
2874(defvar nonascii-insert-offset 0) 2879(defvar nonascii-insert-offset 0)
2875(make-obsolete-variable 'nonascii-insert-offset "do not use it." "23.1") 2880(make-obsolete-variable 'nonascii-insert-offset "do not use it." "23.1")