diff options
| author | Juanma Barranquero | 2005-05-05 09:18:53 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-05-05 09:18:53 +0000 |
| commit | 3fe269229781c0530ed48272c39f0a10fa3ee06b (patch) | |
| tree | 1245e982d9d4edc67b2ae782d546ecc1b97a0594 | |
| parent | dc75b163941c2ef0d2ec770b80a2e48b1aa32503 (diff) | |
| download | emacs-3fe269229781c0530ed48272c39f0a10fa3ee06b.tar.gz emacs-3fe269229781c0530ed48272c39f0a10fa3ee06b.zip | |
(define-obsolete-function-alias): Fix typo in docstring.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/byte-run.el | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5dd89776aa2..291598c6ca6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2005-05-05 Juanma Barranquero <lekktu@gmail.com> | 1 | 2005-05-05 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 2 | ||
| 3 | * emacs-lisp/byte-run.el (define-obsolete-function-alias): Fix | ||
| 4 | typo in docstring. | ||
| 5 | |||
| 3 | * term/w32-win.el (image-library-alist): Add additional name for | 6 | * term/w32-win.el (image-library-alist): Add additional name for |
| 4 | Xpm library. | 7 | Xpm library. |
| 5 | 8 | ||
| @@ -9,7 +12,7 @@ | |||
| 9 | use gcc instead of cpp. | 12 | use gcc instead of cpp. |
| 10 | 13 | ||
| 11 | * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable. | 14 | * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable. |
| 12 | (gdb-create-define-alist): Use. it. | 15 | (gdb-create-define-alist): Use it. |
| 13 | (gdb-cpp-define-alist-program): Update for MS-DOS? | 16 | (gdb-cpp-define-alist-program): Update for MS-DOS? |
| 14 | 17 | ||
| 15 | 2005-05-04 Nick Roberts <nickrob@snap.net.nz> | 18 | 2005-05-04 Nick Roberts <nickrob@snap.net.nz> |
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 5c92f247a05..3728eea8bf8 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el | |||
| @@ -121,7 +121,7 @@ If provided, WHEN should be a string indicating when FUNCTION was | |||
| 121 | first made obsolete, for example a date or a release number. The | 121 | first made obsolete, for example a date or a release number. The |
| 122 | optional argument DOCSTRING specifies the documentation string | 122 | optional argument DOCSTRING specifies the documentation string |
| 123 | for FUNCTION; if DOCSTRING is omitted or nil, FUNCTION uses the | 123 | for FUNCTION; if DOCSTRING is omitted or nil, FUNCTION uses the |
| 124 | documentation string of NEW unluess it already has one." | 124 | documentation string of NEW unless it already has one." |
| 125 | `(progn | 125 | `(progn |
| 126 | (defalias ,function ,new ,docstring) | 126 | (defalias ,function ,new ,docstring) |
| 127 | (make-obsolete ,function ,new ,when))) | 127 | (make-obsolete ,function ,new ,when))) |