diff options
| author | Paul Eggert | 2019-11-11 10:30:13 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-11-11 10:32:53 -0800 |
| commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
| tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/textmodes | |
| parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
| download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.zip | |
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/ispell.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index be2e192e5af..dd1eeb45300 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -2472,7 +2472,7 @@ SPC: Accept word this time. | |||
| 2472 | (help-2 (concat "[l]ook a word up in alternate dictionary; " | 2472 | (help-2 (concat "[l]ook a word up in alternate dictionary; " |
| 2473 | "e[x/X]it; [q]uit session")) | 2473 | "e[x/X]it; [q]uit session")) |
| 2474 | (help-3 (concat "[u]ncapitalized insert into dict. " | 2474 | (help-3 (concat "[u]ncapitalized insert into dict. " |
| 2475 | "Type 'x C-h f ispell-help' for more help"))) | 2475 | "Type `x C-h f ispell-help' for more help"))) |
| 2476 | (save-window-excursion | 2476 | (save-window-excursion |
| 2477 | (if ispell-help-in-bufferp | 2477 | (if ispell-help-in-bufferp |
| 2478 | (let ((buffer (get-buffer-create "*Ispell Help*"))) | 2478 | (let ((buffer (get-buffer-create "*Ispell Help*"))) |
| @@ -3603,7 +3603,7 @@ If APPEND is non-n il, append the info to previous buffer if exists." | |||
| 3603 | "Continue a halted spelling session beginning with the current word." | 3603 | "Continue a halted spelling session beginning with the current word." |
| 3604 | (interactive) | 3604 | (interactive) |
| 3605 | (if (not (marker-position ispell-region-end)) | 3605 | (if (not (marker-position ispell-region-end)) |
| 3606 | (message "No session to continue. Use 'X' command when checking!") | 3606 | (message "No session to continue. Use `X' command when checking!") |
| 3607 | (if (not (equal (marker-buffer ispell-region-end) (current-buffer))) | 3607 | (if (not (equal (marker-buffer ispell-region-end) (current-buffer))) |
| 3608 | (message "Must continue ispell from buffer %s" | 3608 | (message "Must continue ispell from buffer %s" |
| 3609 | (buffer-name (marker-buffer ispell-region-end))) | 3609 | (buffer-name (marker-buffer ispell-region-end))) |