From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.help Subject: Re: special-display-regexps and quitting the windows so formed via "q" Date: Thu, 13 Oct 2011 08:53:01 +0200 Message-ID: <4E968ACD.5000901@gmx.at> References: <87lispk2wn.fsf@jidanni.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1318488797 9078 80.91.229.12 (13 Oct 2011 06:53:17 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 13 Oct 2011 06:53:17 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: jidanni@jidanni.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Oct 13 08:53:13 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1REFAG-00059i-6m for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Oct 2011 08:53:12 +0200 Original-Received: from localhost ([::1]:40432 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REFAF-0000Z5-Da for geh-help-gnu-emacs@m.gmane.org; Thu, 13 Oct 2011 02:53:11 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:37409) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REFAA-0000Yo-S1 for help-gnu-emacs@gnu.org; Thu, 13 Oct 2011 02:53:07 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1REFAA-0005dt-1n for help-gnu-emacs@gnu.org; Thu, 13 Oct 2011 02:53:06 -0400 Original-Received: from mailout-de.gmx.net ([213.165.64.22]:33503) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1REFA9-0005dh-Kq for help-gnu-emacs@gnu.org; Thu, 13 Oct 2011 02:53:06 -0400 Original-Received: (qmail invoked by alias); 13 Oct 2011 06:53:03 -0000 Original-Received: from 62-47-35-34.adsl.highway.telekom.at (EHLO [62.47.35.34]) [62.47.35.34] by mail.gmx.net (mp050) with SMTP; 13 Oct 2011 08:53:03 +0200 X-Authenticated: #14592706 X-Provags-ID: V01U2FsdGVkX193ZOB3OlB3DNmUi8LeIQtRr6nqr0SAF6g4+58TES c/OvfWRKHXRNOL User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) In-Reply-To: <87lispk2wn.fsf@jidanni.org> X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 213.165.64.22 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:82542 Archived-At: > I did (setq special-display-regexps '("\\*Man" "\\*compilation") > Everything is fine, except I wish "q" in those windows would destroy > them, instead of me now having to type C-x 5 0. You probably want to (setq frame-auto-hide-function 'delete-frame) in your .emacs. martin