.emacs-autogen.sh
author Oleksandr Gavenko <gavenkoa@gmail.com>
Fri, 29 Oct 2010 20:37:48 +0300
changeset 509 ed5ef1f0855f
parent 504 dc4a9f76fdbf
child 574 dfd8ec51803a
permissions -rwxr-xr-x
merged

#!/bin/sh

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

cfg=$1

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