From: Juanma Barranquero Date: Thu, 5 May 2005 09:18:53 +0000 (+0000) Subject: (define-obsolete-function-alias): Fix typo in docstring. X-Git-Tag: ttn-vms-21-2-B4~534 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3fe269229781c0530ed48272c39f0a10fa3ee06b;p=emacs.git (define-obsolete-function-alias): Fix typo in docstring. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5dd89776aa2..291598c6ca6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2005-05-05 Juanma Barranquero + * emacs-lisp/byte-run.el (define-obsolete-function-alias): Fix + typo in docstring. + * term/w32-win.el (image-library-alist): Add additional name for Xpm library. @@ -9,7 +12,7 @@ use gcc instead of cpp. * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable. - (gdb-create-define-alist): Use. it. + (gdb-create-define-alist): Use it. (gdb-cpp-define-alist-program): Update for MS-DOS? 2005-05-04 Nick Roberts 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 first made obsolete, for example a date or a release number. The optional argument DOCSTRING specifies the documentation string for FUNCTION; if DOCSTRING is omitted or nil, FUNCTION uses the -documentation string of NEW unluess it already has one." +documentation string of NEW unless it already has one." `(progn (defalias ,function ,new ,docstring) (make-obsolete ,function ,new ,when)))