From: Don Armstrong Date: Mon, 19 May 2014 02:26:15 +0000 (-0700) Subject: it should be exec X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=215012ff3798d7e9e7e458f251481709430d1dcb;p=bin.git it should be exec --- diff --git a/emacs_r b/emacs_r index 99d9435..d46625f 100755 --- a/emacs_r +++ b/emacs_r @@ -1,9 +1,9 @@ #!/bin/sh if [ "x$(basename $0)" = "xemacs_r" ]; then - emacs --eval '(setq server-name "R")' --eval '(server-start)' "$@"; + exec emacs --eval '(setq server-name "R")' --eval '(server-start)' "$@"; elif [ "x$(basename $0)" = "xemacsclient_r" ]; then - emacsclient -s R "$@"; + exec emacsclient -s R "$@"; else echo "No clue what to do '$0'"; fi;