all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Štěpán Němec" <stepnem@gmail.com>
To: igah <weiqingh@mail.com>
Cc: help-gnu-emacs@gnu.org
Subject: How to raise a frame under X (was: how to raise compilation frame)
Date: Wed, 20 Jul 2011 10:57:23 +0200	[thread overview]
Message-ID: <871uxle3d8.fsf@gmail.com> (raw)
In-Reply-To: <32091270.post@talk.nabble.com> (igah's message of "Tue, 19 Jul 2011 06:39:28 -0700 (PDT)")

igah <weiqingh@mail.com> writes:

> when i run the "compile" command, a new frame pops up. when i run compile
> again (from the main frame), the compilation frame doesn't get raised
> automatically. i am using emacs 23.2.1 (x86_64-redhat-linux-gnu, GTK+
> Version 2.24.4) under fluxbox. any help is greatly appreciated. 

Under X and with some window managers, Emacs' `raise-frame' seems to
fail. If your WM supports EWMH[1], you might be able to fix it with
something like the following:

(defadvice raise-frame (around wmctrl activate)
  (if (eq (window-system (ad-get-arg 0)) 'x)
      (x-send-client-message nil 0 (ad-get-arg 0)
                             "_NET_ACTIVE_WINDOW" 32 '(1))
    ad-do-it))

You might also want to `report-emacs-bug', as Emacs obviously doesn't do
as much as it should on its own.

  Štěpán

[1] http://standards.freedesktop.org/wm-spec/wm-spec-latest.html



  reply	other threads:[~2011-07-20  8:57 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-19 13:39 how to raise compilation frame igah
2011-07-20  8:57 ` Štěpán Němec [this message]
2011-07-21 12:08   ` How to raise a frame under X (was: how to raise compilation frame) igah

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=871uxle3d8.fsf@gmail.com \
    --to=stepnem@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=weiqingh@mail.com \
    /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.