]> git.eshelyaron.com Git - emacs.git/commitdiff
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-167
authorMiles Bader <miles@gnu.org>
Wed, 9 Mar 2005 10:16:02 +0000 (10:16 +0000)
committerMiles Bader <miles@gnu.org>
Wed, 9 Mar 2005 10:16:02 +0000 (10:16 +0000)
Tweak obsolete function/variable warning message

2005-03-09  Miles Bader  <miles@gnu.org>

   * lisp/emacs-lisp/bytecomp.el (byte-compile-variable-ref)
   (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".

lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index b245d602e14e4b06ce6d9038a6b59a35bf4bc310..12d9a777e56baa39d8758838e76c9dfd1f2e1770 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-09  Miles Bader  <miles@gnu.org>
+
+       * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
+       (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
+
 2005-03-09  Kenichi Handa  <handa@m17n.org>
 
        * international/latin-1.el: Set case and syntax for 255 only if
index 25a1ba080d1e9d4f0243e13977fc20d2550feb91..08d5515524db968f74d266f13ef6f14ec8fcfe45 100644 (file)
@@ -1,7 +1,7 @@
 ;;; bytecomp.el --- compilation of Lisp code into byte code
 
 ;; Copyright (C) 1985, 1986, 1987, 1992, 1994, 1998, 2000, 2001, 2002,
-;;   2003, 2004  Free Software Foundation, Inc.
+;;   2003, 2004, 2005  Free Software Foundation, Inc.
 
 ;; Author: Jamie Zawinski <jwz@lucid.com>
 ;;     Hallvard Furuseth <hbf@ulrik.uio.no>
@@ -1039,7 +1039,7 @@ Each function's symbol gets added to `byte-compile-noruntime-functions'."
     (byte-compile-set-symbol-position (car form))
     (if (memq 'obsolete byte-compile-warnings)
        (byte-compile-warn "`%s' is an obsolete function%s; %s" (car form)
-                          (if when (concat " since " when) "")
+                          (if when (concat " (as of Emacs " when ")") "")
                           (if (stringp (car new))
                               (car new)
                             (format "use `%s' instead." (car new)))))
@@ -2779,7 +2779,7 @@ That command is designed for interactive use only" fn))
        (let* ((ob (get var 'byte-obsolete-variable))
               (when (cdr ob)))
          (byte-compile-warn "`%s' is an obsolete variable%s; %s" var
-                            (if when (concat " since " when) "")
+                            (if when (concat " (as of Emacs " when ")") "")
                             (if (stringp (car ob))
                                 (car ob)
                               (format "use `%s' instead." (car ob))))))