From 31c4671e671e4d73e9dc74e17ff7528e5dea20b5 Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Tue, 30 Apr 2002 00:15:53 +0000 Subject: [PATCH] added vride; changed arg passthrough --- direct/src/directscripts/runPythonEmacs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/direct/src/directscripts/runPythonEmacs b/direct/src/directscripts/runPythonEmacs index e6c3f12bd8..92599d5c22 100755 --- a/direct/src/directscripts/runPythonEmacs +++ b/direct/src/directscripts/runPythonEmacs @@ -46,6 +46,10 @@ if [ "$TTRADER" ]; then TTRADER=`cygpath -w $TTRADER` export TTRADER fi +if [ "$VRIDE" ]; then + VRIDE=`cygpath -w $VRIDE` + export VRIDE +fi if [ "$WINTOOLS" ]; then WINTOOLS=`cygpath -w $WINTOOLS` export WINTOOLS @@ -81,11 +85,7 @@ HOME=`cygpath -w $HOME` export HOME # Now start up emacs -if [ "$1" != "" ]; then - exec runemacs $1 -else - exec runemacs -fi +exec runemacs $@