all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: help-gnu-emacs@gnu.org
Subject: Re: emacs daemon.. but quietly
Date: Sat, 06 Mar 2010 08:24:43 -0500	[thread overview]
Message-ID: <jwv8wa5a8k9.fsf-monnier+gnu.emacs.help@gnu.org> (raw)
In-Reply-To: mailman.2328.1267795489.14305.help-gnu-emacs@gnu.org

> 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".


  parent reply	other threads:[~2010-03-06 13:24 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.2328.1267795489.14305.help-gnu-emacs@gnu.org>
2010-03-05 14:09 ` emacs daemon.. but quietly Andre Ramaciotti
2010-03-06 13:24 ` Stefan Monnier [this message]
2010-03-05 13:24 Gary .
2010-03-22 13:09 ` Gary .
2010-03-22 18:29 ` tomas
2010-03-22 19:02   ` Richard Riley
2010-03-23 15:28     ` Gary .
2010-03-26 14:44       ` Richard Riley
2010-03-23 15:25   ` Gary .
2010-03-23 18:30   ` Gary .

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=jwv8wa5a8k9.fsf-monnier+gnu.emacs.help@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.