comparison lisp/ChangeLog @ 66932:29c20df6248f

Fix commenting convention. Remove unnecessary leading * in custom docstrings. (flyspell-emacs): Remove unused var. (flyspell-accept-buffer-local-defs): Use save-current-buffer. (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked) (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook) (flyspell-debug-signal-word-checked): Use with-current-buffer. (make-flyspell-overlay): Don't locally reuse a global name. (flyspell-highlight-incorrect-region) (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at. (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p. (flyspell-notify-misspell): Remove unused args `start' and `end'. (flyspell-word): Adjust call accordingly. Use ispell-send-string. Wrap calls to accept-process-output inside with-local-quit since it's often called from a post-command-hook. (flyspell-correct-word, flyspell-auto-correct-word): Use ispell-send-string. (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 16 Nov 2005 17:00:29 +0000
parents bf55d63c7dd6
children 3d572e08dd1d
comparison
equal deleted inserted replaced
66931:1a573209abf9 66932:29c20df6248f
1 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca> 1 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * textmodes/flyspell.el (flyspell-delete-region-overlays): Use 3 * textmodes/flyspell.el: Fix commenting convention.
4 remove-overlays. 4 Remove unnecessary leading * in custom docstrings.
5 (flyspell-emacs): Remove unused var.
6 (flyspell-delete-region-overlays): Use remove-overlays.
7 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
8 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
9 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
10 (flyspell-debug-signal-word-checked): Use with-current-buffer.
11 (make-flyspell-overlay): Don't locally reuse a global name.
12 (flyspell-highlight-incorrect-region)
13 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
14 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
15 (flyspell-notify-misspell): Remove unused args `start' and `end'.
16 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
17 Wrap calls to accept-process-output inside with-local-quit since it's
18 often called from a post-command-hook.
19 (flyspell-correct-word, flyspell-auto-correct-word):
20 Use ispell-send-string.
21 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
5 22
6 * calendar/diary-lib.el (diary-list-entries): Also hide the 23 * calendar/diary-lib.el (diary-list-entries): Also hide the
7 terminating newline. 24 terminating newline.
8 25
9 2005-11-16 Carsten Dominik <dominik@science.uva.nl> 26 2005-11-16 Carsten Dominik <dominik@science.uva.nl>