view unixSoft/otherbin/emacs.sh @ 274:be933a11b72c

hgrc: remove old [paths] stanza that just isn't helpful
author Augie Fackler <durin42@gmail.com>
date Sat, 31 Mar 2012 15:25:51 -0500
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

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