From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#13594: 24.2.92; [PATCH] compilation-start doesn't consider nil OUTWIN Date: Wed, 06 Feb 2013 01:25:37 +0200 Organization: JURTA Message-ID: <87sj5apclq.fsf@mail.jurta.org> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1360107113 28406 80.91.229.3 (5 Feb 2013 23:31:53 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 5 Feb 2013 23:31:53 +0000 (UTC) Cc: 13594@debbugs.gnu.org To: Leo Liu Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Wed Feb 06 00:32:14 2013 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1U2rzp-0005SA-JX for geb-bug-gnu-emacs@m.gmane.org; Wed, 06 Feb 2013 00:32:13 +0100 Original-Received: from localhost ([::1]:45479 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2rzW-0004qj-Rr for geb-bug-gnu-emacs@m.gmane.org; Tue, 05 Feb 2013 18:31:54 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:41314) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2rzU-0004qT-80 for bug-gnu-emacs@gnu.org; Tue, 05 Feb 2013 18:31:53 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U2rzS-0008Av-Kv for bug-gnu-emacs@gnu.org; Tue, 05 Feb 2013 18:31:52 -0500 Original-Received: from debbugs.gnu.org ([140.186.70.43]:33030) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2rzS-0008AY-Hg for bug-gnu-emacs@gnu.org; Tue, 05 Feb 2013 18:31:50 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.72) (envelope-from ) id 1U2s0c-0008LV-D7 for bug-gnu-emacs@gnu.org; Tue, 05 Feb 2013 18:33:02 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 05 Feb 2013 23:33:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13594 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch Original-Received: via spool by 13594-submit@debbugs.gnu.org id=B13594.136010714231999 (code B ref 13594); Tue, 05 Feb 2013 23:33:02 +0000 Original-Received: (at 13594) by debbugs.gnu.org; 5 Feb 2013 23:32:22 +0000 Original-Received: from localhost ([127.0.0.1]:38494 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U2rzx-0008Jv-CV for submit@debbugs.gnu.org; Tue, 05 Feb 2013 18:32:21 -0500 Original-Received: from ps18281.dreamhost.com ([69.163.218.105]:55712 helo=ps18281.dreamhostps.com) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1U2rzt-0008JZ-6Y for 13594@debbugs.gnu.org; Tue, 05 Feb 2013 18:32:19 -0500 Original-Received: from localhost (ps18281.dreamhostps.com [69.163.218.105]) by ps18281.dreamhostps.com (Postfix) with ESMTP id 2FEBB2017D3014; Tue, 5 Feb 2013 15:31:03 -0800 (PST) In-Reply-To: (Leo Liu's message of "Tue, 05 Feb 2013 18:58:18 +0800") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (x86_64-pc-linux-gnu) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:70724 Archived-At: > 1. A new variable compilation-dont-display-buffer to prevent calling > display-buffer. Some users of `async-shell-command' want the same feature of not displaying the output buffer. From the old discussion I got the impression that such customization should be possible by customizing `display-buffer-alist' and associating the buffer name (such as *compilation* or *Async Shell Command*) with an inaction to skip window display. (But it still need to check `outwin' for null values in your patch for the case when `display-buffer' will return nil.) > 2. Display a message when calling compilation-next-error like this: > Error: 2/623 I think it would be nice to display the same in the mode line. > Sadly this second patch doesn't account for the fact that some > compilation messages are removed later on by font-lock. `grep' used to remove parts of grep/compilation messages, but now there shouldn't be such a problem in grep's font-lock. Do you have a test case that would demonstrate this problem in compilation's font-lock?