+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)
* 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,
(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'.
(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)
;;; 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
"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'.")
(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
(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"))