all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Richard Riley <rileyrgdev@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: emacs daemon.. but quietly
Date: Mon, 22 Mar 2010 20:02:22 +0100	[thread overview]
Message-ID: <0frk77-nr6.ln1@news.eternal-september.org> (raw)
In-Reply-To: 20100322182946.GA8597@tomas

tomas@tuxteam.de writes:

> On Fri, Mar 05, 2010 at 02:24:44PM +0100, Gary . wrote:
>> 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
>
> If I understand you correctly, you want to suppress stdout/stderr output
> of emacs --daemon?
>
> You might just redirect that to /dev/null like so:
>
>   emacs --daemon > /dev/null 2>&1
>
> (or did I misunderstand you completely?)
>
>>   ("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.
>
> Hm. I don't quite understand this part. Besides, it seems a roundabout
> way. What are you trying to achieve?
>
> Regards
> -- tomás
>

As is emacs --daemon IMO.

In emacs 23 using the alternate editor setting. My "edit" script is:-

,----
| #!/bin/bash
| # edit
| export GDK_NATIVE_WINDOWS=1
| exec emacsclient --alternate-editor="" -c "$@"
`----

Its in the man page for emacsclient and the wiki.

-- 
ASCII ribbon campaign ( )
 - against HTML email  X
             & vCards / \





  reply	other threads:[~2010-03-22 19:02 UTC|newest]

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

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=0frk77-nr6.ln1@news.eternal-september.org \
    --to=rileyrgdev@gmail.com \
    --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.