# HG changeset patch # User Oleksandr Gavenko # Date 1288363668 -10800 # Node ID 743de44a543163d89aa3b59313b3066052b89448 # Parent 64a475fa36e21d9b00e58834932bf7ef56636132 Set ispell dictionary to default as 'english' not found on Debian 5.0. diff -r 64a475fa36e2 -r 743de44a5431 .emacs-autogen.sh --- a/.emacs-autogen.sh Fri Oct 29 11:53:38 2010 +0300 +++ b/.emacs-autogen.sh Fri Oct 29 17:47:48 2010 +0300 @@ -7,6 +7,8 @@ cfg=$1 +rm -f $cfg + if which aspell; then echo >>$cfg echo "(setq-default ispell-program-name \"aspell\")" >>$cfg @@ -14,5 +16,5 @@ elif which ispell; then echo >>$cfg echo "(setq-default ispell-program-name \"ispell\")" >>$cfg - echo "(setq-default ispell-local-dictionary \"english\")" >>$cfg + echo "(setq-default ispell-local-dictionary \"default\")" >>$cfg fi