Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] emacs r1405 - emacs-daemon
Date: Sat, 29 Aug 2009 06:09:55
Message-Id: E1MhLxS-0000UX-Os@stork.gentoo.org
1 Author: ulm
2 Date: 2009-08-29 11:18:58 +0000 (Sat, 29 Aug 2009)
3 New Revision: 1405
4
5 Modified:
6 emacs-daemon/ChangeLog
7 emacs-daemon/emacs-wrapper.sh
8 Log:
9 Don't redirect stderr.
10
11
12 Modified: emacs-daemon/ChangeLog
13 ===================================================================
14 --- emacs-daemon/ChangeLog 2009-08-27 19:09:40 UTC (rev 1404)
15 +++ emacs-daemon/ChangeLog 2009-08-29 11:18:58 UTC (rev 1405)
16 @@ -1,3 +1,8 @@
17 +2009-08-29 Ulrich Mueller <ulm@g.o>
18 +
19 + * emacs-wrapper.sh: Don't redirect stderr, it may be useful
20 + diagnostics output.
21 +
22 2009-07-17 Ulrich Mueller <ulm@g.o>
23
24 * Version 0.15 released.
25
26 Modified: emacs-daemon/emacs-wrapper.sh
27 ===================================================================
28 --- emacs-daemon/emacs-wrapper.sh 2009-08-27 19:09:40 UTC (rev 1404)
29 +++ emacs-daemon/emacs-wrapper.sh 2009-08-29 11:18:58 UTC (rev 1405)
30 @@ -4,7 +4,7 @@
31 # $Id$
32
33 # Start Emacs with a login shell wrapper to read the user's profile
34 -exec -l "${SHELL}" -c "exec \"${EMACS}\" $*" </dev/null &>/dev/null &
35 +exec -l "${SHELL}" -c "exec \"${EMACS}\" $*" </dev/null >/dev/null &
36 pid=$!
37
38 # Wait for Emacs daemon to detach