.emacs-autogen.sh
author Oleksandr Gavenko <gavenkoa@gmail.com>
Sun, 29 Aug 2010 13:48:17 +0300
changeset 444 5f1cfffd6b67
parent 387 7340a863ae23
child 503 743de44a5431
permissions -rwxr-xr-x
Various workaround for Cygwin shell and find-*/grep-* Emacs functions. Removed patternd for find-*/grep-* command, by now can be used default.

#!/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 \"english\")" >>$cfg
fi