changeset 78898:150f6e38877a

(eldoc-message-commands-table-size, eldoc-message-commands, eldoc-current-idle-delay): Fix typos in docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 27 Sep 2007 21:37:47 +0000
parents 9aa24f503773
children 961c0e9b46fd
files lisp/emacs-lisp/eldoc.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/eldoc.el	Thu Sep 27 21:23:43 2007 +0000
+++ b/lisp/emacs-lisp/eldoc.el	Thu Sep 27 21:37:47 2007 +0000
@@ -104,7 +104,7 @@
 ;;; 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 @@
   "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 @@
 (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.")