aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2004-03-18 00:20:44 +0000
committerJuanma Barranquero2004-03-18 00:20:44 +0000
commit7ab91c5f4532a82db9dbfcfc8a991f3429f43610 (patch)
tree1bacb7cdbd3af87ac640820b7f6d588747ba2661
parentce1b6ae32ed139463b37ee8b6172c5ee128a829e (diff)
downloademacs-7ab91c5f4532a82db9dbfcfc8a991f3429f43610.tar.gz
emacs-7ab91c5f4532a82db9dbfcfc8a991f3429f43610.zip
(make-obsolete-variable): Fix docstring.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/emacs-lisp/byte-run.el6
2 files changed, 9 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5eb5545a6da..89bf21ebb89 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12004-03-18 Juanma Barranquero <lektu@terra.es>
2
3 * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
4
12004-03-17 Nick Roberts <nick@nick.uklinux.net> 52004-03-17 Nick Roberts <nick@nick.uklinux.net>
2 6
3 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes 7 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
@@ -5,8 +9,8 @@
5 9
62004-03-17 Masatake YAMATO <jet@gyve.org> 102004-03-17 Masatake YAMATO <jet@gyve.org>
7 11
8 * smerge-mode.el (smerge-popup-context-menu): Put 12 * smerge-mode.el (smerge-popup-context-menu): Put
9 `unwind-protect' arround `overlay-put' and `popup-menu'. 13 `unwind-protect' around `overlay-put' and `popup-menu'.
10 14
112004-03-16 Masatake YAMATO <jet@gyve.org> 152004-03-16 Masatake YAMATO <jet@gyve.org>
12 16
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el
index 15377c033d9..a7385fe5fd0 100644
--- a/lisp/emacs-lisp/byte-run.el
+++ b/lisp/emacs-lisp/byte-run.el
@@ -91,9 +91,9 @@ was first made obsolete, for example a date or a release number."
91 fn) 91 fn)
92 92
93(defun make-obsolete-variable (var new &optional when) 93(defun make-obsolete-variable (var new &optional when)
94 "Make the byte-compiler warn that VARIABLE is obsolete, 94 "Make the byte-compiler warn that VARIABLE is obsolete.
95and NEW should be used instead. If NEW is a string, then that is the 95The warning will say that NEW should be used instead.
96`use instead' message. 96If NEW is a string, that is the `use instead' message.
97If provided, WHEN should be a string indicating when the variable 97If provided, WHEN should be a string indicating when the variable
98was first made obsolete, for example a date or a release number." 98was first made obsolete, for example a date or a release number."
99 (interactive 99 (interactive