From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: grep /dev/null Date: Thu, 10 Feb 2005 13:41:05 -0500 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1108061271 5773 80.91.229.2 (10 Feb 2005 18:47:51 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 10 Feb 2005 18:47:51 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Feb 10 19:47:50 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1CzJLZ-0001A6-E0 for ged-emacs-devel@m.gmane.org; Thu, 10 Feb 2005 19:47:25 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CzJaL-0008S5-Vt for ged-emacs-devel@m.gmane.org; Thu, 10 Feb 2005 14:02:42 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1CzJYG-0007X3-49 for emacs-devel@gnu.org; Thu, 10 Feb 2005 14:00:32 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1CzJYE-0007WF-B9 for emacs-devel@gnu.org; Thu, 10 Feb 2005 14:00:30 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CzJYD-0007VX-NT for emacs-devel@gnu.org; Thu, 10 Feb 2005 14:00:29 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CzJJ2-00067k-Oc for emacs-devel@gnu.org; Thu, 10 Feb 2005 13:44:48 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1CzJFR-0005qP-PP; Thu, 10 Feb 2005 13:41:05 -0500 Original-To: Kevin Rodgers In-reply-to: (message from Kevin Rodgers on Wed, 09 Feb 2005 10:06:14 -0700) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: main.gmane.org gmane.emacs.devel:33204 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:33204 This change looks reasonable to me. Does anyone see a problem with it? 2005-02-09 Kevin Rodgers * progmodes/compile.el (compilation-disable-input): New option. (compilation-start): If it's non-nil, send an EOF to the process. However, the code in compilation-start should test the argument COMINT. This led me to note something confusing in the doc string of compilation-start. "Compile the program including the current buffer. Default: run `make'. Runs COMMAND, a shell command, in a separate process asynchronously with output going to the buffer `*compilation*'. If optional second arg COMINT is t the buffer will be in Comint mode with `compilation-shell-minor-mode'. You can then use the command \\[next-error] to find the next error message and move to the source code that caused it. The third paragraph appears to relate only to the case where COMINT is t. But I think it actually applies regardless of the value of COMINT. Am I missing something?