aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/calendar
diff options
context:
space:
mode:
authorGlenn Morris2017-10-27 20:04:47 -0400
committerGlenn Morris2017-10-27 20:04:47 -0400
commite6b4e5ffdf30ef4d63614ccbe952f1efb25096a7 (patch)
tree87391d27ade99b534281606f1fd65be8912629ac /lisp/calendar
parente8636ac8cc96e1e7e948f04091792da09dafcc76 (diff)
downloademacs-e6b4e5ffdf30ef4d63614ccbe952f1efb25096a7.tar.gz
emacs-e6b4e5ffdf30ef4d63614ccbe952f1efb25096a7.zip
Fix some doc typos
* lisp/calendar/todo-mode.el (todo-next-item) (todo-previous-item, todo-toggle-item-header): * lisp/window.el (move-to-window-group-line): * src/editfns.c (Fformat): * test/lisp/calendar/todo-mode-tests.el (todo-test-move-item05): Fix doc typos. ; And in some comments.
Diffstat (limited to 'lisp/calendar')
-rw-r--r--lisp/calendar/todo-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el
index 79fda462847..d12dfc54492 100644
--- a/lisp/calendar/todo-mode.el
+++ b/lisp/calendar/todo-mode.el
@@ -956,7 +956,7 @@ called with a prefix argument only moves point to a lower item,
956e.g., with point on the last todo item and called with prefix 1, 956e.g., with point on the last todo item and called with prefix 1,
957it moves point to the first done item; but if called with point 957it moves point to the first done item; but if called with point
958on the last todo item without a prefix argument, it moves point 958on the last todo item without a prefix argument, it moves point
959the the empty line above the done items separator." 959to the empty line above the done items separator."
960 (interactive "p") 960 (interactive "p")
961 ;; It's not worth the trouble to allow prefix arg value < 1, since 961 ;; It's not worth the trouble to allow prefix arg value < 1, since
962 ;; we have the corresponding command. 962 ;; we have the corresponding command.
@@ -976,7 +976,7 @@ If the category's done items are visible, this command called
976with a prefix argument only moves point to a higher item, e.g., 976with a prefix argument only moves point to a higher item, e.g.,
977with point on the first done item and called with prefix 1, it 977with point on the first done item and called with prefix 1, it
978moves to the last todo item; but if called with point on the 978moves to the last todo item; but if called with point on the
979first done item without a prefix argument, it moves point the the 979first done item without a prefix argument, it moves point to the
980empty line above the done items separator." 980empty line above the done items separator."
981 (interactive "p") 981 (interactive "p")
982 ;; Avoid moving to bob if on the first item but not at bob. 982 ;; Avoid moving to bob if on the first item but not at bob.
@@ -1052,7 +1052,7 @@ empty line above the done items separator."
1052(defun todo-toggle-item-header () 1052(defun todo-toggle-item-header ()
1053 "Hide or show item date-time headers in the current file. 1053 "Hide or show item date-time headers in the current file.
1054With done items, this hides only the done date-time string, not 1054With done items, this hides only the done date-time string, not
1055the the original date-time string." 1055the original date-time string."
1056 (interactive) 1056 (interactive)
1057 (unless (catch 'nonempty 1057 (unless (catch 'nonempty
1058 (dolist (type '(todo done)) 1058 (dolist (type '(todo done))