diff options
| author | Glenn Morris | 2018-05-02 15:39:30 -0400 |
|---|---|---|
| committer | Glenn Morris | 2018-05-02 15:39:30 -0400 |
| commit | 05e9477ab5d5dba1b960415d60b9957caa90da48 (patch) | |
| tree | ab835493c667a963cd0b6615e941d9dbdf879055 | |
| parent | 9de7e321b63bf38afef5e3f0e786dd4a046d407a (diff) | |
| download | emacs-05e9477ab5d5dba1b960415d60b9957caa90da48.tar.gz emacs-05e9477ab5d5dba1b960415d60b9957caa90da48.zip | |
* lisp/textmodes/ispell.el (ispell-use-framepop-p): Doc fix.
| -rw-r--r-- | lisp/textmodes/ispell.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 18bf2630e58..1dc39650861 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -326,11 +326,13 @@ The function must take one string argument and return a string." | |||
| 326 | :type 'function | 326 | :type 'function |
| 327 | :group 'ispell) | 327 | :group 'ispell) |
| 328 | 328 | ||
| 329 | ;; FIXME framepop.el last updated c 2003 (?), | ||
| 330 | ;; probably something else replaces it these days. | ||
| 329 | (defcustom ispell-use-framepop-p nil | 331 | (defcustom ispell-use-framepop-p nil |
| 330 | "When non-nil ispell uses framepop to display choices in a dedicated frame. | 332 | "When non-nil ispell uses framepop to display choices in a dedicated frame. |
| 331 | You can set this variable to dynamically use framepop if you are in a | 333 | You can set this variable to dynamically use framepop if you are in a |
| 332 | window system by evaluating the following on startup to set this variable: | 334 | window system by evaluating the following on startup to set this variable: |
| 333 | (and window-system (condition-case () (require \\='framepop) (error nil)))" | 335 | (and (display-graphic-p) (require \\='framepop nil t))" |
| 334 | :type 'boolean | 336 | :type 'boolean |
| 335 | :group 'ispell) | 337 | :group 'ispell) |
| 336 | 338 | ||