diff options
| author | Christopher Zaborsky | 1992-11-03 21:33:58 +0000 |
|---|---|---|
| committer | Christopher Zaborsky | 1992-11-03 21:33:58 +0000 |
| commit | fcec83fbc89c3decd1c46720b23386ed43c8786d (patch) | |
| tree | 4fae50c2b160ecc1935676a3193f047371f36998 | |
| parent | cc9875f9f58a1056c133eb2a824bfd9b479c0584 (diff) | |
| download | emacs-fcec83fbc89c3decd1c46720b23386ed43c8786d.tar.gz emacs-fcec83fbc89c3decd1c46720b23386ed43c8786d.zip | |
Dox fix.
| -rw-r--r-- | lisp/textmodes/spell.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/spell.el b/lisp/textmodes/spell.el index b5ed7777540..02c7c4eb118 100644 --- a/lisp/textmodes/spell.el +++ b/lisp/textmodes/spell.el | |||
| @@ -44,7 +44,7 @@ as its \"correct\" spelling; then the query replace is skipped." | |||
| 44 | (defun spell-word () | 44 | (defun spell-word () |
| 45 | "Check spelling of word at or before point. | 45 | "Check spelling of word at or before point. |
| 46 | If it is not correct, ask user for the correct spelling | 46 | If it is not correct, ask user for the correct spelling |
| 47 | and query-replace the entire buffer to substitute it." | 47 | and `query-replace' the entire buffer to substitute it." |
| 48 | (interactive) | 48 | (interactive) |
| 49 | (let (beg end spell-filter) | 49 | (let (beg end spell-filter) |
| 50 | (save-excursion | 50 | (save-excursion |
| @@ -57,7 +57,7 @@ and query-replace the entire buffer to substitute it." | |||
| 57 | 57 | ||
| 58 | ;;;###autoload | 58 | ;;;###autoload |
| 59 | (defun spell-region (start end &optional description) | 59 | (defun spell-region (start end &optional description) |
| 60 | "Like spell-buffer but applies only to region. | 60 | "Like `spell-buffer' but applies only to region. |
| 61 | Used in a program, applies from START to END. | 61 | Used in a program, applies from START to END. |
| 62 | DESCRIPTION is an optional string naming the unit being checked: | 62 | DESCRIPTION is an optional string naming the unit being checked: |
| 63 | for example, \"word\"." | 63 | for example, \"word\"." |