.emacs-autogen.sh
changeset 386 3efe37437745
child 387 7340a863ae23
equal deleted inserted replaced
385:f0e9718ec640 386:3efe37437745
       
     1 #!/bin/sh
       
     2 
       
     3 if [ -z "$1" ]; then
       
     4   echo "Where config file?"
       
     5   exit 1
       
     6 fi
       
     7 
       
     8 cfg=$1
       
     9 
       
    10 if which aspell; then
       
    11   echo >>$cfg
       
    12   echo "(setq-default ispell-program-name \"aspell\")" >>$cfg
       
    13   echo "(setq-default ispell-local-dictionary \"english\")" >>$cfg
       
    14 fi