aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-09-06 20:39:28 +0000
committerUlrich Müller <ulm@gentoo.org>2009-09-06 20:39:28 +0000
commitb11df4cdc2e1521ddf112223cc413cda61b27f95 (patch)
tree967178f3996ff92296d6e8a0d890b3d1c9a9be5f
parentDon't redirect stderr. (diff)
downloademacs-tools-b11df4cdc2e1521ddf112223cc413cda61b27f95.tar.gz
emacs-tools-b11df4cdc2e1521ddf112223cc413cda61b27f95.tar.bz2
emacs-tools-b11df4cdc2e1521ddf112223cc413cda61b27f95.zip
Undo r1405.
svn path=/emacs-daemon/; revision=1408
-rw-r--r--ChangeLog5
-rw-r--r--emacs-wrapper.sh2
2 files changed, 1 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index a58e83a..a598af4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,3 @@
-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 70da978..b3bb597 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