view unixSoft/otherbin/emacs.sh @ 48:bc63fd9e6d64

Edit some paths in .hgrc
author Augie Fackler <durin42@gmail.com>
date Wed, 11 Feb 2009 10:27:06 -0600
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

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