From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andrea Crotti Newsgroups: gmane.emacs.help Subject: Re: Compilation buffer Date: Thu, 25 Nov 2010 17:57:18 +0100 Message-ID: References: <87eia9jwux.fsf@ambire.localdomain> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1290704300 2224 80.91.229.12 (25 Nov 2010 16:58:20 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 25 Nov 2010 16:58:20 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 25 17:58:16 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PLf97-0004qU-ON for geh-help-gnu-emacs@m.gmane.org; Thu, 25 Nov 2010 17:58:15 +0100 Original-Received: from localhost ([127.0.0.1]:38072 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PLf97-0007my-2M for geh-help-gnu-emacs@m.gmane.org; Thu, 25 Nov 2010 11:58:09 -0500 Original-Received: from [140.186.70.92] (port=57876 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PLf8b-0007mh-0R for help-gnu-emacs@gnu.org; Thu, 25 Nov 2010 11:57:37 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PLf8Z-0004sr-0d for help-gnu-emacs@gnu.org; Thu, 25 Nov 2010 11:57:36 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:56439) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PLf8Y-0004sI-NH for help-gnu-emacs@gnu.org; Thu, 25 Nov 2010 11:57:34 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PLf8V-0004XX-H7 for help-gnu-emacs@gnu.org; Thu, 25 Nov 2010 17:57:31 +0100 Original-Received: from 67-011.eduroam.rwth-aachen.de ([134.61.67.11]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 25 Nov 2010 17:57:31 +0100 Original-Received: from andrea.crotti.0 by 67-011.eduroam.rwth-aachen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 25 Nov 2010 17:57:31 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 41 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 67-011.eduroam.rwth-aachen.de User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (darwin) Cancel-Lock: sha1:Ua8CIHT4eftmUScCimGGxBQ605w= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:75433 Archived-At: Thien-Thi Nguyen writes: > () Andrea Crotti > () Thu, 25 Nov 2010 00:17:00 +0100 > > I stole this nice trick somewhere > > (defun kill-compile-buffer-if-successful (buffer string) > (if (string-match "finished" string) ^ > (run-with-timer 1 nil | > 'kill-buffer | > buffer))) | > | > (add-hook 'compilation-finish-functions 'kill | ompile-buffer-if-successful) > | > And actually it's very nice, in short if the co | ilation succeeds the > buffer is killed, but there are two small probl | s: > | > - not just "compile" uses compilation mode, for | xample grep also does > but then the buffer disappears too soon. | > Is there a way to distiguish between those di | erent things? > | > The first arg to the function is the buffer. ------+ > You can test that. Ah ok thanks good, so now is --8<---------------cut here---------------start------------->8--- (defun kill-compile-buffer-if-successful (buffer string) " kill a compilation buffer if succeeded without warnings " (if (and (string-match "compilation" (buffer-name buffer)) (string-match "finished" string)) (run-with-timer 1 nil 'kill-buffer buffer))) --8<---------------cut here---------------end--------------->8--- I also wanted to check for "warnings", but how from a buffer do I get easily IF there is a string in it? I found (buffer-string) for example but I can't pass a buffer to it...