emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108285: textmodes/flyspell.el: Minor


From: Agustin Martin
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108285: textmodes/flyspell.el: Minor change over last r108281 change. Use ispell-otherchars variable.
Date: Fri, 18 May 2012 09:36:09 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 108285
committer: Agustin Martin <address@hidden>
branch nick: trunk
timestamp: Fri 2012-05-18 09:36:09 +0200
message:
  textmodes/flyspell.el: Minor change over last r108281 change. Use 
ispell-otherchars variable.   
  
  Use ispell-otherchars variable rather than (ispell-get-otherchars).
modified:
  lisp/textmodes/flyspell.el
=== modified file 'lisp/textmodes/flyspell.el'
--- a/lisp/textmodes/flyspell.el        2012-05-18 07:04:04 +0000
+++ b/lisp/textmodes/flyspell.el        2012-05-18 07:36:09 +0000
@@ -828,7 +828,7 @@
             (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 @@
                                       (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 @@
                                         (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))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]