unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Valentin Baciu <valentin@syntactic.org>
To: jidanni@jidanni.org
Cc: help-gnu-emacs@gnu.org
Subject: Re: all I wanted to do was make the compilation-mode-hook the sole visible buffer
Date: Wed, 30 Nov 2011 11:03:06 +0200	[thread overview]
Message-ID: <CAKHQLnrL4hun6kycpBGFtL4GWvjOh85otdR3QkLxgUQ2V6U3cA@mail.gmail.com> (raw)
In-Reply-To: <87d3caff1w.fsf@jidanni.org>

[-- Attachment #1: Type: text/plain, Size: 977 bytes --]

On Wed, Nov 30, 2011 at 5:46 AM, <jidanni@jidanni.org> wrote:

> >>>>> "TN" == Thien-Thi Nguyen <ttn@gnuvola.org> writes:
> TN>   (add-to-list 'same-window-buffer-names "*compilation*")
> It turns out that is not what I want. I want it to be the sole window
> visible.
> OK, I can use
> (add-hook
>  'compilation-mode-hook
>  (function
>  (lambda ()
>    (switch-to-buffer "*compilation*");alas, forget using any personal
> compilation-buffer-name-function
>    (delete-other-windows))))
>
>
I believe that the hook function will be executed in the context of the
compilation buffer so you may not need to call 'switch-to-buffer. Also, the
'function' form is unnecessary (in general, not just in this particular
example). You could reduce your code to:

(add-hook 'compilation-mode-hook 'delete-other-windows)

Now you can use the 'remove-hook function if you decide you no longer need
the hook; approach which does not work when you add anonymous functions as
hook functions.

[-- Attachment #2: Type: text/html, Size: 1469 bytes --]

  reply	other threads:[~2011-11-30  9:03 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-27  7:28 all I wanted to do was make the compilation-mode-hook the sole visible buffer jidanni
2011-11-27  7:28 ` jidanni
2011-11-29 10:56   ` Thien-Thi Nguyen
2011-11-30  2:36     ` jidanni
2011-11-30  3:46     ` jidanni
2011-11-30  9:03       ` Valentin Baciu [this message]
2011-11-30 12:23         ` jidanni
2011-12-06 14:37           ` Thien-Thi Nguyen

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=CAKHQLnrL4hun6kycpBGFtL4GWvjOh85otdR3QkLxgUQ2V6U3cA@mail.gmail.com \
    --to=valentin@syntactic.org \
    --cc=help-gnu-emacs@gnu.org \
    --cc=jidanni@jidanni.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).