diff options
author | Glenn Morris <rgm@gnu.org> | 2012-02-10 14:35:28 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-02-10 14:35:28 -0500 |
commit | f82cb659425f94a36634a0d1637e4dd899a973df (patch) | |
tree | 35bb7a89c0613f5ad277041c8552c5e254bc07e2 /lisp/international | |
parent | cc26d239af9a82cff079556a1daff4b4bf60eb5c (diff) | |
download | emacs-f82cb659425f94a36634a0d1637e4dd899a973df.tar.gz |
mule-cmds trivia
* lisp/international/mule-cmds.el (unify-8859-on-encoding-mode)
(unify-8859-on-decoding-mode): Properly mark as obsolete.
Diffstat (limited to 'lisp/international')
-rw-r--r-- | lisp/international/mule-cmds.el | 11 |
1 files changed, 8 insertions, 3 deletions
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 @@ ;;; mule-cmds.el --- commands for multilingual environment -*-coding: iso-2022-7bit -*- -;; Copyright (C) 1997-2012 Free Software Foundation, Inc. +;; Copyright (C) 1997-2012 Free Software Foundation, Inc. ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, ;; 2005, 2006, 2007, 2008, 2009, 2010, 2011 ;; National Institute of Advanced Industrial Science and Technology (AIST) @@ -2863,13 +2863,18 @@ on encoding." ;; Backwards compatibility. These might be better with :init-value t, ;; but that breaks loadup. (define-minor-mode unify-8859-on-encoding-mode - "Obsolete." + "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 - "Obsolete." + "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 nonascii-insert-offset 0) (make-obsolete-variable 'nonascii-insert-offset "do not use it." "23.1") |