diff options
| author | Glenn Morris | 2017-10-27 20:09:17 -0400 |
|---|---|---|
| committer | Glenn Morris | 2017-10-27 20:09:17 -0400 |
| commit | 8bd9524a7c57c8fb208c0ecd3a7be96fbad74b0c (patch) | |
| tree | 1099c41b72938a3e894dfd1ca1a8f12c376328cc /lisp | |
| parent | 0b0d91e60a0c25fdb1b3f20128d4bcab398ea6df (diff) | |
| download | emacs-8bd9524a7c57c8fb208c0ecd3a7be96fbad74b0c.tar.gz emacs-8bd9524a7c57c8fb208c0ecd3a7be96fbad74b0c.zip | |
* lisp/button.el (button-activate): Fix doc typo.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/button.el | 2 | ||||
| -rw-r--r-- | lisp/doc-view.el | 2 | ||||
| -rw-r--r-- | lisp/url/url-queue.el | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/button.el b/lisp/button.el index a6090477c55..32cd995f5e4 100644 --- a/lisp/button.el +++ b/lisp/button.el | |||
| @@ -232,7 +232,7 @@ property instead of `action'; if the button has no `mouse-action', | |||
| 232 | the value of `action' is used instead. | 232 | the value of `action' is used instead. |
| 233 | 233 | ||
| 234 | The action can either be a marker or a function. If it's a | 234 | The action can either be a marker or a function. If it's a |
| 235 | marker then goto it. Otherwise it it is a function then it is | 235 | marker then goto it. Otherwise if it is a function then it is |
| 236 | called with BUTTON as only argument. BUTTON is either an | 236 | called with BUTTON as only argument. BUTTON is either an |
| 237 | overlay, a buffer position, or (for buttons in the mode-line or | 237 | overlay, a buffer position, or (for buttons in the mode-line or |
| 238 | header-line) a string." | 238 | header-line) a string." |
diff --git a/lisp/doc-view.el b/lisp/doc-view.el index a222076edb8..7213ea2ff6b 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el | |||
| @@ -451,7 +451,7 @@ Typically \"page-%s.png\".") | |||
| 451 | (if (and (eq 'pdf doc-view-doc-type) | 451 | (if (and (eq 'pdf doc-view-doc-type) |
| 452 | (executable-find "pdfinfo")) | 452 | (executable-find "pdfinfo")) |
| 453 | ;; We don't want to revert if the PDF file is corrupted which | 453 | ;; We don't want to revert if the PDF file is corrupted which |
| 454 | ;; might happen when it it currently recompiled from a tex | 454 | ;; might happen when it is currently recompiled from a tex |
| 455 | ;; file. (TODO: We'd like to have something like that also | 455 | ;; file. (TODO: We'd like to have something like that also |
| 456 | ;; for other types, at least PS, but I don't know a good way | 456 | ;; for other types, at least PS, but I don't know a good way |
| 457 | ;; to test if a PS file is complete.) | 457 | ;; to test if a PS file is complete.) |
diff --git a/lisp/url/url-queue.el b/lisp/url/url-queue.el index 06a77404b58..84da6f60260 100644 --- a/lisp/url/url-queue.el +++ b/lisp/url/url-queue.el | |||
| @@ -177,7 +177,7 @@ The variable `url-queue-timeout' sets a timeout." | |||
| 177 | (with-current-buffer | 177 | (with-current-buffer |
| 178 | (if (and (bufferp (url-queue-buffer job)) | 178 | (if (and (bufferp (url-queue-buffer job)) |
| 179 | (buffer-live-p (url-queue-buffer job))) | 179 | (buffer-live-p (url-queue-buffer job))) |
| 180 | ;; Use the (partially filled) process buffer it it exists. | 180 | ;; Use the (partially filled) process buffer if it exists. |
| 181 | (url-queue-buffer job) | 181 | (url-queue-buffer job) |
| 182 | ;; If not, just create a new buffer, which will probably be | 182 | ;; If not, just create a new buffer, which will probably be |
| 183 | ;; killed again by the caller. | 183 | ;; killed again by the caller. |