diff options
-rw-r--r-- | .login-daemons | 2 | ||||
-rw-r--r-- | .profile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.login-daemons b/.login-daemons index 5b8851e..1d76e9d 100644 --- a/.login-daemons +++ b/.login-daemons @@ -1,6 +1,6 @@ #!/bin/sh -if [ -x "`which daemon`"]; then +if [ -x "`which daemon`" ]; then daemon emacs --daemon daemon sysfiles daemon maildirproc @@ -16,7 +16,7 @@ for dir in $bins; do fi done -if [ -d "$HOME/tmp"]; then +if [ -d "$HOME/tmp" ]; then export TMPDIR="$HOME/tmp" elif [ -d "$HOME/.prefix/tmp"]; then export TMPDIR="$HOME/.prefix/tmp" |