]> git.eshelyaron.com Git - emacs.git/commitdiff
(ispell-dictionary-alist-4): Rewrite the CASECHARS and NOT-CASECHARS
authorLute Kamstra <lute@gnu.org>
Tue, 25 Jan 2005 00:38:46 +0000 (00:38 +0000)
committerLute Kamstra <lute@gnu.org>
Tue, 25 Jan 2005 00:38:46 +0000 (00:38 +0000)
regular expressions of the "nederlands" and "nederlands8" dictionaries
to prevent a "Range striding over charsets" error.

lisp/ChangeLog
lisp/textmodes/ispell.el

index 902f9da4e1c3649db36e553922c0d75130395e63..46e67c9725ceb1d355d4ee3bb7e0838d1c8b1c27 100644 (file)
@@ -1,3 +1,10 @@
+2005-01-24  Lute Kamstra  <lute@gnu.org>
+
+       * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
+       CASECHARS and NOT-CASECHARS regular expressions of the
+       "nederlands" and "nederlands8" dictionaries to prevent a "Range
+       striding over charsets" error.
+
 2005-01-24  Jay Belanger  <belanger@truman.edu>
 
        * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
index 2e8b1ab93c602a0c27051688f65b6d076d332f88..11e81f0ad70d463896ac3be7cc6ffa9d2b29e14e 100644 (file)
@@ -591,12 +591,12 @@ and then re-start emacs."
     "[^A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]"
     "[-]" nil ("-B" "-d" "italian") "~tex" iso-8859-1)
    ("nederlands"                       ; Nederlands.aff
-    "[A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
-    "[^A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
+    "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]"
+    "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]"
     "[']" t ("-C") nil iso-8859-1)
    ("nederlands8"                      ; Dutch8.aff
-    "[A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
-    "[^A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
+    "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]"
+    "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]"
     "[']" t ("-C") nil iso-8859-1)))