Mercurial > hg > xemacs-beta
diff lisp/bytecomp-runtime.el @ 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 | 6728e641994e |
children | 0e3842cd22e2 |
line wrap: on
line diff
--- 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