diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-11-07 03:52:04 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-11-07 03:52:04 +0000 |
commit | f8cb5ed6214b563e2d1ce61b923b544ae48113ae (patch) | |
tree | 1eefdcd76d6a022b3168edfd01c5715eb3f00062 | |
parent | f28c1bd9cd71668830a1db49d8e15be8a817c84f (diff) | |
download | emacs-f8cb5ed6214b563e2d1ce61b923b544ae48113ae.tar.gz |
(flyspell-external-point-words): Use goto-char instead of beginning-of-buffer.
-rw-r--r-- | lisp/textmodes/flyspell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 556369077d8..441d9972173 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -1281,7 +1281,7 @@ Word syntax described by `ispell-dictionary-alist' (which see)." (defun flyspell-external-point-words () (let ((buffer flyspell-external-ispell-buffer)) (set-buffer buffer) - (beginning-of-buffer) + (goto-char (point-min)) (let ((size (- flyspell-large-region-end flyspell-large-region-beg)) (start flyspell-large-region-beg)) ;; now we are done with ispell, we have to find the word in |