aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorPaul Eggert2019-11-11 10:30:13 -0800
committerPaul Eggert2019-11-11 10:32:53 -0800
commit6b4a97c1c78f39ce890d100acceceb652d14e20d (patch)
tree9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/textmodes
parent269796288a43520a1dcc481337af472d086faaa4 (diff)
downloademacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz
emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.zip
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/ispell.el4
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)))