From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: david@adboyd.com (J. David Boyd) Newsgroups: gmane.emacs.help Subject: Re: code for closing compilation buffers Date: Mon, 16 Jul 2007 11:34:47 -0400 Message-ID: <87odicweeg.fsf@adboyd.com> References: <87fy3v58y5.fsf@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1184600141 31819 80.91.229.12 (16 Jul 2007 15:35:41 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 16 Jul 2007 15:35:41 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jul 16 17:35:40 2007 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.50) id 1IASbr-0002b3-9y for geh-help-gnu-emacs@m.gmane.org; Mon, 16 Jul 2007 17:35:39 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IASbq-0001pV-OH for geh-help-gnu-emacs@m.gmane.org; Mon, 16 Jul 2007 11:35:38 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IASbX-0001iY-5b for help-gnu-emacs@gnu.org; Mon, 16 Jul 2007 11:35:19 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IASbW-0001h5-Ds for help-gnu-emacs@gnu.org; Mon, 16 Jul 2007 11:35:18 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IASbW-0001gp-BH for help-gnu-emacs@gnu.org; Mon, 16 Jul 2007 11:35:18 -0400 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IASbV-00058l-Qo for help-gnu-emacs@gnu.org; Mon, 16 Jul 2007 11:35:18 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1IASbO-0005tX-MR for help-gnu-emacs@gnu.org; Mon, 16 Jul 2007 17:35:10 +0200 Original-Received: from 156-40.126-70.tampabay.res.rr.com ([70.126.40.156]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 Jul 2007 17:35:10 +0200 Original-Received: from david by 156-40.126-70.tampabay.res.rr.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 Jul 2007 17:35:10 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 25 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 156-40.126-70.tampabay.res.rr.com User-Agent: Gnus/5.1100000000000003 (Gnus v5.11) Emacs/22.1 (cygwin) Cancel-Lock: sha1:z5G0KtTIioU8Lqf7qVGXivEQs94= X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) 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:45732 Archived-At: Hadron writes: > I googled up some code and then modified it to use the more recent > compilation-finish-functions hook. > > Could someone take a peek that I did the "if then else" part right. > > If errors then jump to first error, else close the window. It *works* I > would just be grateful if someone could comment on whether its done > right: > > > (add-hook 'compilation-finish-functions > (lambda (buf str) > (if (string-match "exited abnormally" str) > (next-error) > ;;no errors, make the compilation window go away in a few seconds > (run-at-time "2 sec" nil 'delete-windows-on (get-buffer-create "*compilation*")) > (message "No Compilation Errors!") > ) > )) I would say that, if it works, it _can't_ really be done wrong! Dave