]> git.eshelyaron.com Git - emacs.git/commitdiff
(eldoc-message-commands-table-size, eldoc-message-commands,
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 27 Sep 2007 21:39:31 +0000 (21:39 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 27 Sep 2007 21:39:31 +0000 (21:39 +0000)
eldoc-current-idle-delay): Fix typos in docstrings.

lisp/ChangeLog
lisp/emacs-lisp/eldoc.el

index c7a0a333bb0c1824ddd6fa505f35550769a60df9..2f59072e23fc2cfb4bad22ae92f7ec03390ee8de 100644 (file)
@@ -1,3 +1,11 @@
+2007-09-27  Juanma Barranquero  <lekktu@gmail.com>
+
+       * emacs-lisp/eldoc.el (eldoc-message-commands-table-size)
+       (eldoc-message-commands, eldoc-current-idle-delay):
+       Fix typos in docstrings.
+
+       * progmodes/python.el (python-eldoc-function): Doc fix.
+
 2007-09-26  Eli Zaretskii  <eliz@gnu.org>
 
        * menu-bar.el (menu-bar-search-documentation-menu): Renamed from
@@ -68,7 +76,7 @@
 2007-09-22  Glenn Morris  <rgm@gnu.org>
 
        * eshell/esh-mode.el (eshell-output-filter-functions): Add
-        eshell-postoutput-scroll-to-bottom.
+       eshell-postoutput-scroll-to-bottom.
 
 2007-09-21  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * help.el (resize-temp-buffer-window): Use window-full-width-p
        instead of comparing frame-width and window-width.
 
-2007-08-05  Peter Povinec  <ppovinec <at> yahoo.com> (tiny change)
+2007-08-05  Peter Povinec  <ppovinec <at> yahoo.com>  (tiny change)
 
        * term.el: Honor term-default-fg-color and term-default-bg-color
        settings when modifying term-current-face.
index 3876efe82c714a4bae25a642d580fb2855688bc2..f0ae9ddafbda4c314d370c0293bfd8c47cbf794f 100644 (file)
@@ -104,7 +104,7 @@ truncated to make more of the arglist or documentation string visible."
 ;;; No user options below here.
 
 (defvar eldoc-message-commands-table-size 31
-  "This is used by eldoc-add-command to initialize eldoc-message-commands
+  "This is used by `eldoc-add-command' to initialize `eldoc-message-commands'
 as an obarray.
 It should probably never be necessary to do so, but if you
 choose to increase the number of buckets, you must do so before loading
@@ -116,7 +116,7 @@ Remember to keep it a prime number to improve hash performance.")
   "Commands after which it is appropriate to print in the echo area.
 Eldoc does not try to print function arglists, etc. after just any command,
 because some commands print their own messages in the echo area and these
-functions would instantly overwrite them.  But self-insert-command as well
+functions would instantly overwrite them.  But `self-insert-command' as well
 as most motion commands are good candidates.
 This variable contains an obarray of symbols; do not manipulate it
 directly.  Instead, use `eldoc-add-command' and `eldoc-remove-command'.")
@@ -132,7 +132,7 @@ directly.  Instead, use `eldoc-add-command' and `eldoc-remove-command'.")
 (defvar eldoc-timer nil "eldoc's timer object.")
 
 (defvar eldoc-current-idle-delay eldoc-idle-delay
-  "idle time delay currently in use by timer.
+  "Idle time delay currently in use by timer.
 This is used to determine if `eldoc-idle-delay' is changed by the user.")
 
 \f