(eldoc-message-commands-table-size, eldoc-message-commands,

eldoc-current-idle-delay): Fix typos in docstrings.
This commit is contained in:
Juanma Barranquero 2007-09-27 21:39:31 +00:00
parent d56f40cb55
commit a1a57a4244
2 changed files with 13 additions and 5 deletions

View 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>
@ -820,7 +828,7 @@
* 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.

View 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.")