all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "A.Politz" <politza@googlemail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: emacsclient frame reuse
Date: Tue, 4 Aug 2009 15:18:59 -0700 (PDT)	[thread overview]
Message-ID: <e6977909-d760-4b46-b295-223d87a14fbb@t13g2000yqt.googlegroups.com> (raw)
In-Reply-To: 1c9c248b-a2e4-441a-9bd7-5ca49bc7694c@c1g2000yqi.googlegroups.com

On Aug 4, 11:07 pm, jem <jere.mcdev...@gmail.com> wrote:

> How can you detect if there is already a running frame with the newest
> version?
>
> Thanks
>
> Jere
> ~


#!/bin/sh

EMACS=emacs-23.1
EMACSCLIENT=emacsclient-23.1
FLAGS=-n

$EMACSCLIENT -e nil >/dev/null || $EMACS --daemon

NR_FRAMES=$($EMACSCLIENT -e '(1- (length (frame-list)))')

if [ $NR_FRAMES -eq 0 ];then
    FLAGS="$FLAGS -c"
fi

$EMACSCLIENT $FLAGS "$@"


There seems to be an invisible frame, representing the daemon or
something.


  reply	other threads:[~2009-08-04 22:18 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-04 21:07 emacsclient frame reuse jem
2009-08-04 22:18 ` A.Politz [this message]
2009-08-05  0:22   ` jem
2009-08-05  0:40     ` jem

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=e6977909-d760-4b46-b295-223d87a14fbb@t13g2000yqt.googlegroups.com \
    --to=politza@googlemail.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.