diff options
| author | Richard M. Stallman | 2005-11-02 01:34:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-11-02 01:34:04 +0000 |
| commit | b57148527d873fa29ea124edce559cc73c12c238 (patch) | |
| tree | 78612a8e9df2e0b3f58d3ff6991b804e0857a01f | |
| parent | f38a12bdc9f7e01e0e8854cd12c4ebbce8ba5d21 (diff) | |
| download | emacs-b57148527d873fa29ea124edce559cc73c12c238.tar.gz emacs-b57148527d873fa29ea124edce559cc73c12c238.zip | |
(flyspell-external-point-words): Pass nil to flyspell-get-word.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/flyspell.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4f0c3cc6e91..c53fb3cf44f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-11-01 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * textmodes/flyspell.el (flyspell-external-point-words): | ||
| 4 | Pass nil to flyspell-get-word. | ||
| 5 | |||
| 1 | 2005-11-02 Kim F. Storm <storm@cua.dk> | 6 | 2005-11-02 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)" | 8 | * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)" |
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 253485fc87f..f65ffd0ba5c 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el | |||
| @@ -1360,7 +1360,7 @@ The buffer to mark them in is `flyspell-large-region-buffer'." | |||
| 1360 | ;; Detect when WORD can't be checked properly | 1360 | ;; Detect when WORD can't be checked properly |
| 1361 | ;; because flyspell-get-word finds | 1361 | ;; because flyspell-get-word finds |
| 1362 | ;; just part of it, and treat that as ok. | 1362 | ;; just part of it, and treat that as ok. |
| 1363 | (if (< (length (flyspell-get-word following)) | 1363 | (if (< (length (flyspell-get-word nil)) |
| 1364 | (length word)) | 1364 | (length word)) |
| 1365 | nil | 1365 | nil |
| 1366 | (flyspell-word)))) | 1366 | (flyspell-word)))) |