aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-08-29 11:18:58 +0000
committerUlrich Müller <ulm@gentoo.org>2009-08-29 11:18:58 +0000
commitad1cb95df8217a122570ff567cec021417848fe8 (patch)
tree83d5bfe37f2b21f610864217b2867e00f41d826b
parentClarify wording. (diff)
downloademacs-tools-ad1cb95df8217a122570ff567cec021417848fe8.tar.gz
emacs-tools-ad1cb95df8217a122570ff567cec021417848fe8.tar.bz2
emacs-tools-ad1cb95df8217a122570ff567cec021417848fe8.zip
Don't redirect stderr.
svn path=/emacs-daemon/; revision=1405
-rw-r--r--ChangeLog5
-rw-r--r--emacs-wrapper.sh2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a598af4..a58e83a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-29 Ulrich Mueller <ulm@gentoo.org>
+
+ * emacs-wrapper.sh: Don't redirect stderr, it may be useful
+ diagnostics output.
+
2009-07-17 Ulrich Mueller <ulm@gentoo.org>
* Version 0.15 released.
diff --git a/emacs-wrapper.sh b/emacs-wrapper.sh
index b3bb597..70da978 100644
--- a/emacs-wrapper.sh
+++ b/emacs-wrapper.sh
@@ -4,7 +4,7 @@
# $Id$
# Start Emacs with a login shell wrapper to read the user's profile
-exec -l "${SHELL}" -c "exec \"${EMACS}\" $*" </dev/null &>/dev/null &
+exec -l "${SHELL}" -c "exec \"${EMACS}\" $*" </dev/null >/dev/null &
pid=$!
# Wait for Emacs daemon to detach