Mercurial > emacs
comparison lisp/textmodes/ispell.el @ 99698:efc1b0dc2c12
(ispell-dictionary-base-alist): Adjust to the
case where the default dictionary is French, Spanish, younameit.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 18 Nov 2008 21:42:17 +0000 |
parents | 967ef6e9e7a8 |
children | e7cd485b79ff |
comparison
equal
deleted
inserted
replaced
99697:4d2232791f45 | 99698:efc1b0dc2c12 |
---|---|
504 (coding-system :tag "Coding System"))) | 504 (coding-system :tag "Coding System"))) |
505 :group 'ispell) | 505 :group 'ispell) |
506 | 506 |
507 | 507 |
508 (defvar ispell-dictionary-base-alist | 508 (defvar ispell-dictionary-base-alist |
509 '((nil ; default (English.aff) | 509 '((nil |
510 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) | 510 ;; The default dictionary. It may be English.aff, or any other |
511 ;; dictionary depending on locale and such things. We should probably | |
512 ;; ask ispell what dictionary it's using, but until we do that, let's | |
513 ;; just use an approximate regexp. | |
514 "[[:alpha:]]" "[^[:alpha:]]" "[']" nil ("-B") nil iso-8859-1) | |
511 ("american" ; Yankee English | 515 ("american" ; Yankee English |
512 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) | 516 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) |
513 ("brasileiro" ; Brazilian mode | 517 ("brasileiro" ; Brazilian mode |
514 "[A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" | 518 "[A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" |
515 "[^A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" | 519 "[^A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" |