]> git.eshelyaron.com Git - emacs.git/commitdiff
* emulation/viper-cmd.el (viper-harness-minor-mode): Fix docstring typo.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 17 Nov 2008 02:24:16 +0000 (02:24 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 17 Nov 2008 02:24:16 +0000 (02:24 +0000)
* org/org.el (org-time-string-to-absolute, org-small-year-to-year)
  (org-tags-sparse-tree): Fix typos in docstrings.

lisp/ChangeLog
lisp/emulation/viper-cmd.el
lisp/org/ChangeLog
lisp/org/org.el

index fb36bfc934889c4d64fe14c3c2f34b4b074a3623..7224e4c0b561de2d6d80a5eca6c8a3ff91ce3fda 100644 (file)
@@ -1,5 +1,7 @@
 2008-11-17  Juanma Barranquero  <lekktu@gmail.com>
 
+       * emulation/viper-cmd.el (viper-harness-minor-mode): Fix docstring typo.
+
        * simple.el (quoted-insert, minibuffer-history-isearch-pop-state, undo)
        (undo-only, rotate-yank-pointer, kill-whole-line, push-mark-command)
        (exchange-point-and-mark, set-goal-column, kill-line, backward-word)
index 2e9449c513f08874eb817e9a7a8394ec47ca3636..a6e7339e9fcff5bb0a04aacb3f3946d13c1bd358 100644 (file)
@@ -935,7 +935,7 @@ Similar to viper-escape-to-emacs, but accepts forms rather than keystrokes."
 ;; bindings.  By letting Viper know which files these modes are in, it will
 ;; arrange to reorganize minor-mode-map-alist so that things will work right.
 (defun viper-harness-minor-mode (load-file)
-  "Familiarize Viper with a minor mode defined in LOAD_FILE.
+  "Familiarize Viper with a minor mode defined in LOAD-FILE.
 Minor modes that have their own keymaps may overshadow Viper keymaps.
 This function is designed to make Viper aware of the packages that define
 such minor modes.
index ff7c0e50d2d6e320d2c9b52d42c09817227d97c2..b5480b7eb7d06d30913123f33af8994b0213122f 100644 (file)
@@ -1,3 +1,8 @@
+2008-11-17  Juanma Barranquero  <lekktu@gmail.com>
+
+       * org.el (org-time-string-to-absolute, org-small-year-to-year)
+       (org-tags-sparse-tree): Fix typos in docstrings.
+
 2008-11-15  Carsten Dominik  <dominik@science.uva.nl>
 
        * org-publish.el (org-publish-attachment): Allow copy-file to
index cc585b008bfc1c3c8da218fdb399a6eff8b33d13..9b4e662787a0726eb9efa70eb958524a7673750f 100644 (file)
@@ -8991,10 +8991,10 @@ only lines with a TODO keyword are included in the output."
 (defvar todo-only) ;; dynamically scoped
 
 (defun org-tags-sparse-tree (&optional todo-only match)
-  "Create a sparse tree according to tags  string MATCH.
+  "Create a sparse tree according to tags string MATCH.
 MATCH can contain positive and negative selection of tags, like
 \"+WORK+URGENT-WITHBOSS\".
-If optional argument TODO_ONLY is non-nil, only select lines that are
+If optional argument TODO-ONLY is non-nil, only select lines that are
 also TODO lines."
   (interactive "P")
   (org-prepare-agenda-buffers (list (current-buffer)))
@@ -11129,7 +11129,7 @@ days in order to avoid rounding problems."
   "Convert a time stamp to an absolute day number.
 If there is a specifyer for a cyclic time stamp, get the closest date to
 DAYNR.
-PREFER and SHOW_ALL are passed through to `org-closest-date'."
+PREFER and SHOW-ALL are passed through to `org-closest-date'."
   (cond
    ((and daynr (string-match "\\`%%\\((.*)\\)" s))
     (if (org-diary-sexp-entry (match-string 1 s) "" date)
@@ -11150,7 +11150,7 @@ PREFER and SHOW_ALL are passed through to `org-closest-date'."
   "Convert 2-digit years into 4-digit years.
 38-99 are mapped into 1938-1999.  1-37 are mapped into 2001-2007.
 The year 2000 cannot be abbreviated.  Any year lager than 99
-is retrned unchanged."
+is returned unchanged."
   (if (< year 38)
       (setq year (+ 2000 year))
     (if (< year 100)