From 80a511622c52f16583c549a3b16cd419a77f015e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Agust=C3=ADn=20Mart=C3=ADn?= Date: Fri, 18 May 2012 09:36:09 +0200 Subject: [PATCH] textmodes/flyspell.el: Minor change over last 2012-05-18T07:04:04Z!agustin.martin@hispalinux.es change. Use ispell-otherchars variable. Use ispell-otherchars variable rather than (ispell-get-otherchars). --- lisp/textmodes/flyspell.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 89134a1d355..af924dd403b 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -828,7 +828,7 @@ Mostly we check word delimiters." (backward-char 1) (and (looking-at (flyspell-get-not-casechars)) (or (string= "" ispell-otherchars) - (not (looking-at (ispell-get-otherchars)))) + (not (looking-at ispell-otherchars))) (or flyspell-consider-dash-as-word-delimiter-flag (not (looking-at "-")))))) ;; yes because we have reached or typed a word delimiter. @@ -896,7 +896,7 @@ Mostly we check word delimiters." (backward-char 1) (and (and (looking-at (flyspell-get-not-casechars)) 1) (or (string= "" ispell-otherchars) - (not (looking-at (ispell-get-otherchars)))) + (not (looking-at ispell-otherchars))) (and (or flyspell-consider-dash-as-word-delimiter-flag (not (looking-at "\\-"))) 2)))))) c)))) @@ -913,7 +913,7 @@ Mostly we check word delimiters." (backward-char 1) (and (looking-at (flyspell-get-not-casechars)) (or (string= "" ispell-otherchars) - (not (looking-at (ispell-get-otherchars)))) + (not (looking-at ispell-otherchars))) (or flyspell-consider-dash-as-word-delimiter-flag (not (looking-at "\\-")))))))) c)) -- 2.39.2