diff options
| author | Eli Zaretskii | 2006-01-21 13:11:21 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-01-21 13:11:21 +0000 |
| commit | f60117ac2980966dc0de0fd1fd5447eb17589a3f (patch) | |
| tree | fb8f7708dc0e77278212bc78dc2ae3259deb0969 | |
| parent | ee6c21a72adc7f886ccbc5ddef13b2b2bef818fc (diff) | |
| download | emacs-f60117ac2980966dc0de0fd1fd5447eb17589a3f.tar.gz emacs-f60117ac2980966dc0de0fd1fd5447eb17589a3f.zip | |
(flyspell-emacs-popup, flypell-xemacs-popup): Default to disabling the
"Save affix" question.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/flyspell.el | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 981bbbf2993..9ab2b2a4b74 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es> | ||
| 2 | |||
| 3 | * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup): | ||
| 4 | Default to disabling the "Save affix" question. | ||
| 5 | |||
| 1 | 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change) | 6 | 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change) |
| 2 | 7 | ||
| 3 | * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as | 8 | * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as |
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index a4930324e95..61192bbbe1c 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el | |||
| @@ -2080,7 +2080,8 @@ The word checked is the word at the mouse position." | |||
| 2080 | corrects) | 2080 | corrects) |
| 2081 | '())) | 2081 | '())) |
| 2082 | (affix (car (cdr (cdr (cdr poss))))) | 2082 | (affix (car (cdr (cdr (cdr poss))))) |
| 2083 | (base-menu (let ((save (if (consp affix) | 2083 | show-affix-info |
| 2084 | (base-menu (let ((save (if (and (consp affix) show-affix-info) | ||
| 2084 | (list | 2085 | (list |
| 2085 | (list (concat "Save affix: " (car affix)) | 2086 | (list (concat "Save affix: " (car affix)) |
| 2086 | 'save) | 2087 | 'save) |
| @@ -2121,7 +2122,8 @@ The word checked is the word at the mouse position." | |||
| 2121 | corrects) | 2122 | corrects) |
| 2122 | '())) | 2123 | '())) |
| 2123 | (affix (car (cdr (cdr (cdr poss))))) | 2124 | (affix (car (cdr (cdr (cdr poss))))) |
| 2124 | (menu (let ((save (if (consp affix) | 2125 | show-affix-info |
| 2126 | (menu (let ((save (if (and (consp affix) show-affix-info) | ||
| 2125 | (vector | 2127 | (vector |
| 2126 | (concat "Save affix: " (car affix)) | 2128 | (concat "Save affix: " (car affix)) |
| 2127 | (list 'flyspell-do-correct | 2129 | (list 'flyspell-do-correct |