view unixSoft/otherbin/emacs.sh @ 189:0487f0197755

emacs: disable whitespace-cleanup in makefiles, highlight tabs in makefiles
author Augie Fackler <durin42@gmail.com>
date Sat, 06 Mar 2010 23:09:39 -0600
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

#!/bin/sh
if [ "`uname`" = "Darwin" ] ; then
    open -a emacs "$@"
else
    emacs -nw "$@"
fi