diff options
| author | Leo Liu | 2013-09-28 10:54:27 +0800 |
|---|---|---|
| committer | Leo Liu | 2013-09-28 10:54:27 +0800 |
| commit | e090f499ee3103d5d1677c654d3d09020d7959cd (patch) | |
| tree | 47756d1cd72e53502f521fd485f7a08e9bd99c0b /lisp/cedet | |
| parent | 7e138a62168e5a027c8818b344f73ae227cca547 (diff) | |
| download | emacs-e090f499ee3103d5d1677c654d3d09020d7959cd.tar.gz emacs-e090f499ee3103d5d1677c654d3d09020d7959cd.zip | |
Rename lookup-words to ispell-lookup-words
(ispell-complete-word, ispell-command-loop): All uses changed.
* cedet/semantic/texi.el (semantic-analyze-possible-completions): Use
ispell-lookup-words instead.
Fixes: debbugs:15460
Diffstat (limited to 'lisp/cedet')
| -rw-r--r-- | lisp/cedet/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/cedet/semantic/texi.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog index ed3301510f0..4a017644c84 100644 --- a/lisp/cedet/ChangeLog +++ b/lisp/cedet/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-09-28 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * semantic/texi.el (semantic-analyze-possible-completions): Use | ||
| 4 | ispell-lookup-words instead. (Bug#15460) | ||
| 5 | |||
| 1 | 2013-09-20 Glenn Morris <rgm@gnu.org> | 6 | 2013-09-20 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * semantic.el (semantic-new-buffer-fcn-was-run, semantic-active-p): | 8 | * semantic.el (semantic-new-buffer-fcn-was-run, semantic-active-p): |
diff --git a/lisp/cedet/semantic/texi.el b/lisp/cedet/semantic/texi.el index 34a85b8b79b..51105077188 100644 --- a/lisp/cedet/semantic/texi.el +++ b/lisp/cedet/semantic/texi.el | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | (require 'texinfo) | 32 | (require 'texinfo) |
| 33 | 33 | ||
| 34 | (defvar ede-minor-mode) | 34 | (defvar ede-minor-mode) |
| 35 | (declare-function lookup-words "ispell") | 35 | (declare-function ispell-lookup-words "ispell") |
| 36 | (declare-function ede-current-project "ede") | 36 | (declare-function ede-current-project "ede") |
| 37 | 37 | ||
| 38 | (defvar semantic-texi-super-regex | 38 | (defvar semantic-texi-super-regex |
| @@ -431,7 +431,7 @@ that start with that symbol." | |||
| 431 | ((member 'word (oref context :prefixclass)) | 431 | ((member 'word (oref context :prefixclass)) |
| 432 | ;; Do completion for words via ispell. | 432 | ;; Do completion for words via ispell. |
| 433 | (require 'ispell) | 433 | (require 'ispell) |
| 434 | (let ((word-list (lookup-words prefix))) | 434 | (let ((word-list (ispell-lookup-words prefix))) |
| 435 | (mapcar (lambda (f) (semantic-tag f 'word)) word-list)) | 435 | (mapcar (lambda (f) (semantic-tag f 'word)) word-list)) |
| 436 | ) | 436 | ) |
| 437 | (t nil)) | 437 | (t nil)) |