changeset 991:a28c97bd4634

[xemacs-hg @ 2002-09-03 05:36:51 by scop] 2002-09-02 Ville Skyttä <ville.skytta@xemacs.org> * bytecomp-runtime.el (make-obsolete): Docstring argument nit. (make-obsolete-variable): Ditto. (make-compatible): Ditto. (make-compatible-variable): Ditto.
author scop
date Tue, 03 Sep 2002 05:36:52 +0000
parents 4700aface1ab
children 964f33d24564
files lisp/ChangeLog lisp/bytecomp-runtime.el
diffstat 2 files changed, 11 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Tue Sep 03 02:32:12 2002 +0000
+++ b/lisp/ChangeLog	Tue Sep 03 05:36:52 2002 +0000
@@ -1,3 +1,10 @@
+2002-09-02  Ville Skyttä  <ville.skytta@xemacs.org>
+
+	* bytecomp-runtime.el (make-obsolete): Docstring argument nit.
+	(make-obsolete-variable): Ditto.
+	(make-compatible): Ditto.
+	(make-compatible-variable): Ditto.
+
 2002-07-12  Andy Piper  <andy@xemacs.org>
 
 	* custom.el (custom-theme-set-variables): remove bogus
--- a/lisp/bytecomp-runtime.el	Tue Sep 03 02:32:12 2002 +0000
+++ b/lisp/bytecomp-runtime.el	Tue Sep 03 05:36:52 2002 +0000
@@ -93,7 +93,7 @@
 ;		    ''byte-optimizer ''byte-compile-inline-expand))))
 
 (defun make-obsolete (fn new)
-  "Make the byte-compiler warn that FUNCTION is obsolete.
+  "Make the byte-compiler warn that function FN is obsolete.
 The warning will say that NEW should be used instead.
 If NEW is a string, that is the `use instead' message."
   (interactive "aMake function obsolete: \nxObsoletion replacement: ")
@@ -105,7 +105,7 @@
   fn)
 
 (defun make-obsolete-variable (var new)
-  "Make the byte-compiler warn that VARIABLE is obsolete,
+  "Make the byte-compiler warn that variable VAR is obsolete,
 and NEW should be used instead.  If NEW is a string, then that is the
 `use instead' message."
   (interactive
@@ -120,7 +120,7 @@
 ;; By overwhelming demand, we separate out truly obsolete symbols from
 ;; those that are present for GNU Emacs compatibility.
 (defun make-compatible (fn new)
-  "Make the byte-compiler know that FUNCTION is provided for compatibility.
+  "Make the byte-compiler know that function FN is provided for compatibility.
 The warning will say that NEW should be used instead.
 If NEW is a string, that is the `use instead' message."
   (interactive "aMake function compatible: \nxCompatible replacement: ")
@@ -132,7 +132,7 @@
   fn)
 
 (defun make-compatible-variable (var new)
-  "Make the byte-compiler know that VARIABLE is provided for compatibility.
+  "Make the byte-compiler know that variable VAR is provided for compatibility,
 and NEW should be used instead.  If NEW is a string, then that is the
 `use instead' message."
   (interactive