aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/flyspell.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 99eca11ee4c..26c814fcc21 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12010-11-15 Agustín Martín <agustin.martin@hispalinux.es>
2
3 * textmodes/flyspell.el (flyspell-generic-progmode-verify):
4 Make sure to check inside the word (Bug#6761).
5
12010-11-14 Chong Yidong <cyd@stupidchicken.com> 62010-11-14 Chong Yidong <cyd@stupidchicken.com>
2 7
3 * startup.el (command-line): If the cursorColor resource is set, 8 * startup.el (command-line): If the cursorColor resource is set,
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el
index b08b75c728b..5dbcb2d7d77 100644
--- a/lisp/textmodes/flyspell.el
+++ b/lisp/textmodes/flyspell.el
@@ -380,7 +380,8 @@ like <img alt=\"Some thing.\">."
380 380
381(defun flyspell-generic-progmode-verify () 381(defun flyspell-generic-progmode-verify ()
382 "Used for `flyspell-generic-check-word-predicate' in programming modes." 382 "Used for `flyspell-generic-check-word-predicate' in programming modes."
383 (let ((f (get-text-property (point) 'face))) 383 ;; (point) is next char after the word. Must check one char before.
384 (let ((f (get-text-property (- (point) 1) 'face)))
384 (memq f flyspell-prog-text-faces))) 385 (memq f flyspell-prog-text-faces)))
385 386
386;;;###autoload 387;;;###autoload