.emacs-autogen.sh
author Oleksandr Gavenko <gavenkoa@gmail.com>
Fri, 29 Oct 2010 17:47:48 +0300
changeset 503 743de44a5431
parent 387 7340a863ae23
child 504 dc4a9f76fdbf
permissions -rwxr-xr-x
Set ispell dictionary to default as 'english' not found on Debian 5.0.

#!/bin/sh

if [ -z "$1" ]; then
  echo "Where config file?"
  exit 1
fi

cfg=$1

rm -f $cfg

if which aspell; then
  echo >>$cfg
  echo "(setq-default ispell-program-name \"aspell\")" >>$cfg
  echo "(setq-default ispell-local-dictionary \"english\")" >>$cfg
elif which ispell; then
  echo >>$cfg
  echo "(setq-default ispell-program-name \"ispell\")" >>$cfg
  echo "(setq-default ispell-local-dictionary \"default\")" >>$cfg
fi