From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: emacs daemon.. but quietly Date: Sat, 06 Mar 2010 08:24:43 -0500 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1272989760 3406 80.91.229.12 (4 May 2010 16:16:00 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 4 May 2010 16:16:00 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue May 04 18:15:59 2010 connect(): No such file or directory Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1O9Kmr-00029S-Hh for geh-help-gnu-emacs@m.gmane.org; Tue, 04 May 2010 18:15:57 +0200 Original-Received: from localhost ([127.0.0.1]:59605 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O9Kmq-00051x-MB for geh-help-gnu-emacs@m.gmane.org; Tue, 04 May 2010 12:15:56 -0400 Original-Path: usenet.stanford.edu!postnews.google.com!news2.google.com!npeer02.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!post01.iad.highwinds-media.com!newsfe18.iad.POSTED!7564ea0f!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.92 (gnu/linux) Cancel-Lock: sha1:x+O7gIaWDvdma886cwWarcgXyQY= Original-Lines: 42 Original-X-Complaints-To: abuse@UsenetServer.com Original-NNTP-Posting-Date: Sat, 06 Mar 2010 13:24:43 UTC Original-Xref: usenet.stanford.edu gnu.emacs.help:177377 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:72919 Archived-At: > Is there any way to stop emacs, run with --daemon, printing out > details about all of the config files it is loading? At the moment I > see > ("emacs" "--quiet") > Loading charset... > Loading charset...done > (etc.) which is ugly since I want to start the server, when > appropriate, when I start my login shell by doing something like > function serverExists { > TMPDIR=${TMPDIR-/tmp}; > TMPFILE="${TMPDIR}/ps-output.$$"; > ps > ${TMPFILE} > grep -q 'emacs-X11' ${TMPFILE} > SERVER_STARTED=$?; > rm ${TMPFILE} > return $SERVER_STARTED; > } > if serverExists ; then > export EMACS_SERVER="emacs already started" > else > emacs --daemon --quiet > export EMACS_SERVER="emacs started here" > fi > echo $EMACS_SERVER > in my .bashrc. > Any ideas, anyone? Why is the output a problem? How do you "login"? Stefan PS: You could avoid starting this daemon eagerly and do it lazily using the "-a ''" parameter. BTW your `serverExists' could instead do "emacsclient --eval 1".