From: Juanma Barranquero Date: Wed, 26 Sep 2007 11:55:46 +0000 (+0000) Subject: (eldoc-message-commands-table-size, eldoc-message-commands, X-Git-Tag: emacs-pretest-23.0.90~10609 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d9d31f0a440e03d1a924e6835ec27b91afb493e1;p=emacs.git (eldoc-message-commands-table-size, eldoc-message-commands, eldoc-current-idle-delay, eldoc-function-argstring-format): Fix typos in docstrings. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1c8bc602b99..83526a50b8f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2007-09-26 Juanma Barranquero + + * emacs-lisp/eldoc.el (eldoc-message-commands-table-size) + (eldoc-message-commands, eldoc-current-idle-delay) + (eldoc-function-argstring-format): Fix typos in docstrings. + 2007-09-26 Jay Belanger * calc/calc-units.el (calc-convert-units) @@ -8,7 +14,7 @@ * org-export-latex.el (org-export-latex-tables-verbatim): New function. (org-export-latex-remove-from-headlines): Name changed because of - typo. + typo. (org-export-latex-quotation-marks-convention): Option removed. (org-export-latex-make-preamble): Handle the DATE option. (org-export-latex-cleaned-string): Now the only cleaning function, @@ -16,7 +22,6 @@ (org-export-latex-lists, org-export-latex-parse-list) (org-export-list-to-latex): New functions. - 2007-09-26 Carsten Dominik * org.el (org-kill-is-subtree-p): Use `org-outline-regexp'. @@ -65,7 +70,7 @@ (org-todo): Respect org-todo-log-states. (org-up-heading-safe): New function. (org-entry-get-with-inheritance): Use `org-up-heading-safe'. - + * org.texi: Change links to webpage and maintained email. (Remember): Promoted to Chapter, significant changes. (Fast access to TODO states): New section. @@ -705,12 +710,12 @@ 2007-09-13 Jari Aalto * man.el (Man-default-man-entry): At end of line, continue looking - to the next line for possible end of hyphenated command. + to the next line for possible end of hyphenated command. 2007-09-13 Chris Moore * shell.el (shell-resync-dirs): Don't move the cursor relative to - the command being edited. + the command being edited. 2007-09-12 Jim Meyering (tiny change) diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el index 1d2441f884a..10eb821d4e7 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el @@ -109,7 +109,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 @@ -121,7 +121,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'.") @@ -137,7 +137,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.") @@ -474,7 +474,7 @@ ARGLIST is either a string, or a list of strings or symbols." (format "(%s)" arglist))) (defun eldoc-function-argstring-format (argstring) - "Apply `eldoc-argument-case' to each word in argstring. + "Apply `eldoc-argument-case' to each word in ARGSTRING. The words \"&rest\", \"&optional\" are returned unchanged." (mapconcat (lambda (s) (if (member s '("&optional" "&rest"))