emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master acd65a7: Keep default CASECHARS/NOT-CASECHARS for i


From: Reuben Thomas
Subject: [Emacs-diffs] master acd65a7: Keep default CASECHARS/NOT-CASECHARS for ispell built-in dictionaries
Date: Wed, 21 Dec 2016 22:32:11 +0000 (UTC)

branch: master
commit acd65a7d948f77701f5bdc99c031ca8fdb1e976e
Author: Reuben Thomas <address@hidden>
Commit: Reuben Thomas <address@hidden>

    Keep default CASECHARS/NOT-CASECHARS for ispell built-in dictionaries
    
    * lisp/textmodes/ispell.el (ispell-set-spellchecker-params): Do not
    override CASECHARS and NOT-CASECHARS.  The ispell dictionaries
    retain their hardwired values, and all other dictionaries are given
    sensible defaults.
---
 lisp/textmodes/ispell.el |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 23ee412..7551d2f 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -1290,8 +1290,8 @@ aspell is used along with Emacs).")
         (cl-pushnew (if (cadr adict) ;; Do not touch hunspell uninitialized 
entries
                         (list
                          (nth 0 adict)   ; dict name
-                         "[[:alpha:]]"   ; casechars
-                         "[^[:alpha:]]"  ; not-casechars
+                         (nth 1 adict)   ; casechars
+                         (nth 2 adict)   ; not-casechars
                          (nth 3 adict)   ; otherchars
                          (nth 4 adict)   ; many-otherchars-p
                          (nth 5 adict)   ; ispell-args



reply via email to

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