diff options
| author | Glenn Morris | 2017-10-27 20:04:47 -0400 |
|---|---|---|
| committer | Glenn Morris | 2017-10-27 20:04:47 -0400 |
| commit | e6b4e5ffdf30ef4d63614ccbe952f1efb25096a7 (patch) | |
| tree | 87391d27ade99b534281606f1fd65be8912629ac /lisp/calendar | |
| parent | e8636ac8cc96e1e7e948f04091792da09dafcc76 (diff) | |
| download | emacs-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.el | 6 |
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, | |||
| 956 | e.g., with point on the last todo item and called with prefix 1, | 956 | e.g., with point on the last todo item and called with prefix 1, |
| 957 | it moves point to the first done item; but if called with point | 957 | it moves point to the first done item; but if called with point |
| 958 | on the last todo item without a prefix argument, it moves point | 958 | on the last todo item without a prefix argument, it moves point |
| 959 | the the empty line above the done items separator." | 959 | to 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 | |||
| 976 | with a prefix argument only moves point to a higher item, e.g., | 976 | with a prefix argument only moves point to a higher item, e.g., |
| 977 | with point on the first done item and called with prefix 1, it | 977 | with point on the first done item and called with prefix 1, it |
| 978 | moves to the last todo item; but if called with point on the | 978 | moves to the last todo item; but if called with point on the |
| 979 | first done item without a prefix argument, it moves point the the | 979 | first done item without a prefix argument, it moves point to the |
| 980 | empty line above the done items separator." | 980 | empty 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. |
| 1054 | With done items, this hides only the done date-time string, not | 1054 | With done items, this hides only the done date-time string, not |
| 1055 | the the original date-time string." | 1055 | the 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)) |