diff options
| author | Glenn Morris | 2008-02-28 03:47:59 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-02-28 03:47:59 +0000 |
| commit | 584dcd8f486c03072280ae2b60eaf5683290e7b6 (patch) | |
| tree | bc98045a31e12f15f515adc78402a702beebbbe4 | |
| parent | d6a277d036cb6f163cd20edb1cd159dd0fa8e327 (diff) | |
| download | emacs-584dcd8f486c03072280ae2b60eaf5683290e7b6.tar.gz emacs-584dcd8f486c03072280ae2b60eaf5683290e7b6.zip | |
(make-obsolete): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/byte-run.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 33a3f06d4e6..855111b9f9b 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el | |||
| @@ -106,7 +106,8 @@ The return value of this function is not used." | |||
| 106 | (defun make-obsolete (obsolete-name current-name &optional when) | 106 | (defun make-obsolete (obsolete-name current-name &optional when) |
| 107 | "Make the byte-compiler warn that OBSOLETE-NAME is obsolete. | 107 | "Make the byte-compiler warn that OBSOLETE-NAME is obsolete. |
| 108 | The warning will say that CURRENT-NAME should be used instead. | 108 | The warning will say that CURRENT-NAME should be used instead. |
| 109 | If CURRENT-NAME is a string, that is the `use instead' message. | 109 | If CURRENT-NAME is a string, that is the `use instead' message |
| 110 | \(it should end with a period, and not start with a capital). | ||
| 110 | If provided, WHEN should be a string indicating when the function | 111 | If provided, WHEN should be a string indicating when the function |
| 111 | was first made obsolete, for example a date or a release number." | 112 | was first made obsolete, for example a date or a release number." |
| 112 | (interactive "aMake function obsolete: \nxObsoletion replacement: ") | 113 | (interactive "aMake function obsolete: \nxObsoletion replacement: ") |