]> git.eshelyaron.com Git - emacs.git/commitdiff
(eldoc-message-commands-table-size, eldoc-message-commands,
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 26 Sep 2007 11:55:46 +0000 (11:55 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 26 Sep 2007 11:55:46 +0000 (11:55 +0000)
eldoc-current-idle-delay, eldoc-function-argstring-format):
Fix typos in docstrings.

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

index 1c8bc602b994d2fe24d84340c29cca1f60a2d3f9..83526a50b8f232867030b359e0621650cefa7463 100644 (file)
@@ -1,3 +1,9 @@
+2007-09-26  Juanma Barranquero  <lekktu@gmail.com>
+
+       * 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  <jay.p.belanger@gmail.com>
 
        * 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  <dominik@science.uva.nl>
 
        * 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.
 2007-09-13  Jari Aalto  <jari.aalto@cante.net>
 
        * 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  <dooglus@gmail.com>
 
        * 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  <jim@meyering.net>  (tiny change)
 
index 1d2441f884a35cdf0ed7f208422c434ab0daf5ef..10eb821d4e784a29964cffcce040df06843346ae 100644 (file)
@@ -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.")
 
 \f
@@ -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"))