comparison unixSoft/otherbin/emacs.sh @ 33:b403402153b5

Add some setup to make emacs easier to use on OS X.
author Augie Fackler <durin42@gmail.com>
date Fri, 09 Jan 2009 11:28:50 -0600
parents
children 7983184eb8d8
comparison
equal deleted inserted replaced
32:dc1c584707e6 33:b403402153b5
1 #!/bin/sh
2 if [ "`uname`" = "Darwin" ] ; then
3 open -a emacs "$@"
4 else
5 emacs -nw "$@"
6 fi