]> git.eshelyaron.com Git - emacs.git/commitdiff
(define-obsolete-function-alias): Fix typo in docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 5 May 2005 09:18:53 +0000 (09:18 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 5 May 2005 09:18:53 +0000 (09:18 +0000)
lisp/ChangeLog
lisp/emacs-lisp/byte-run.el

index 5dd89776aa25ec90f79378f3a4ebc60d509dc0a0..291598c6ca6e146eaa5bde8eaddcaf5379587c8c 100644 (file)
@@ -1,5 +1,8 @@
 2005-05-05  Juanma Barranquero  <lekktu@gmail.com>
 
+       * 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  <nickrob@snap.net.nz>
index 5c92f247a0527a98819cb6dba0ffd1181e36360f..3728eea8bf8bd276d9932495c83ae51d0d5cb1d4 100644 (file)
@@ -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)))