X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sane_editor;h=dd1aec75de8f2de3d691b37e27f1702c92605c61;hb=1886c7247cb16ed68a78cd5550b152689a465999;hp=56c98d9650561bf23006f841d4853746a0d6818d;hpb=edaff4d1c50a0eae38d19ae673ab845b7d37805a;p=bin.git diff --git a/sane_editor b/sane_editor index 56c98d9..dd1aec7 100755 --- a/sane_editor +++ b/sane_editor @@ -10,7 +10,13 @@ # modify the gsrvdir check to search for directories that are owned by me if [ -x /usr/bin/emacsclient ] && [ -x /usr/bin/emacs ]; then - exec emacsclient -c "$@"; + # reset the tempdir to deal with setuid things clearing it + export TMPDIR="$(echo ~/tmp)"; + if [ -z "$DISPLAY" ]; then + exec emacsclient --alternate-editor /usr/bin/vi -c -nw "$@"; + else + exec emacsclient --alternate-editor /usr/bin/vi -c "$@"; + fi; fi; if [ -x /usr/bin/gnuclient ] && [ -x /usr/bin/emacs ]; then if ( gnuclient -batch < /dev/null >/dev/null); then