[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107237: mule-cmds trivia
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107237: mule-cmds trivia |
Date: |
Fri, 10 Feb 2012 14:35:28 -0500 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107237
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2012-02-10 14:35:28 -0500
message:
mule-cmds trivia
* lisp/international/mule-cmds.el (unify-8859-on-encoding-mode)
(unify-8859-on-decoding-mode): Properly mark as obsolete.
modified:
lisp/ChangeLog
lisp/international/mule-cmds.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-02-10 18:16:19 +0000
+++ b/lisp/ChangeLog 2012-02-10 19:35:28 +0000
@@ -1,3 +1,8 @@
+2012-02-10 Glenn Morris <address@hidden>
+
+ * international/mule-cmds.el (unify-8859-on-encoding-mode)
+ (unify-8859-on-decoding-mode): Properly mark as obsolete.
+
2012-02-10 Lars Ingebrigtsen <address@hidden>
* mail/emacsbug.el (report-emacs-bug-hook): Query the user first
=== modified file 'lisp/international/mule-cmds.el'
--- a/lisp/international/mule-cmds.el 2012-01-21 11:36:42 +0000
+++ b/lisp/international/mule-cmds.el 2012-02-10 19:35:28 +0000
@@ -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 @@
;; 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")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107237: mule-cmds trivia,
Glenn Morris <=