diff options
| author | Basil L. Contovounesios | 2024-02-28 17:02:41 +0100 |
|---|---|---|
| committer | Basil L. Contovounesios | 2024-02-28 17:04:20 +0100 |
| commit | bca3c9b466e24aacd561c818f2d19665af6efc11 (patch) | |
| tree | 62f3a695403a281aae231ebbe60d657bf205f44c | |
| parent | f7c2fe3337bb5e5721d17f40f79dbc1275e17b0d (diff) | |
| download | emacs-bca3c9b466e24aacd561c818f2d19665af6efc11.tar.gz emacs-bca3c9b466e24aacd561c818f2d19665af6efc11.zip | |
; Fix :type of text-mode-ispell-word-completion.
| -rw-r--r-- | lisp/textmodes/text-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el index 87f6668cecb..e8e1f4898ce 100644 --- a/lisp/textmodes/text-mode.el +++ b/lisp/textmodes/text-mode.el | |||
| @@ -88,7 +88,7 @@ nor does it extend `completion-at-point-functions'. | |||
| 88 | This user option only takes effect when you customize it in | 88 | This user option only takes effect when you customize it in |
| 89 | Custom or with `setopt', not with `setq'." | 89 | Custom or with `setopt', not with `setq'." |
| 90 | :group 'text | 90 | :group 'text |
| 91 | :type 'boolean | 91 | :type '(choice (const completion-at-point) boolean) |
| 92 | :version "30.1" | 92 | :version "30.1" |
| 93 | :set (lambda (sym val) | 93 | :set (lambda (sym val) |
| 94 | (if (and (set sym val) | 94 | (if (and (set sym val) |