From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: display-completion-list should not strip text properties Date: Sat, 07 Apr 2007 08:40:33 -0400 Message-ID: References: <878xd8dw3d.fsf@stupidchicken.com> <17941.35328.281122.300772@farnswood.snap.net.nz> <5y7isq2tho.fsf@fencepost.gnu.org> <87d52ifekm.fsf@stupidchicken.com> Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1175949826 20944 80.91.229.12 (7 Apr 2007 12:43:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 7 Apr 2007 12:43:46 +0000 (UTC) Cc: rgm@gnu.org, cyd@stupidchicken.com, nickrob@snap.net.nz, emacs-devel@gnu.org To: storm@cua.dk (Kim F. Storm) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Apr 07 14:43:10 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HaAFw-0001Jn-QW for ged-emacs-devel@m.gmane.org; Sat, 07 Apr 2007 14:43:01 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HaAJX-0005Re-4S for ged-emacs-devel@m.gmane.org; Sat, 07 Apr 2007 08:46:43 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HaAJS-0005PP-Tn for emacs-devel@gnu.org; Sat, 07 Apr 2007 08:46:38 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HaAJS-0005Oj-AU for emacs-devel@gnu.org; Sat, 07 Apr 2007 08:46:38 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HaAJS-0005Od-73 for emacs-devel@gnu.org; Sat, 07 Apr 2007 08:46:38 -0400 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HaAFq-0001hW-To for emacs-devel@gnu.org; Sat, 07 Apr 2007 08:42:54 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1HaADZ-0000IB-1q; Sat, 07 Apr 2007 08:40:33 -0400 In-reply-to: (storm@cua.dk) X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) 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 Xref: news.gmane.org gmane.emacs.devel:69160 Archived-At: ! (defvar grep-find-use-xargs ! (if (equal (call-process "find" nil nil nil ! grep-null-device "-print0") ! 0) ! 'gnu) ! "Whether \\[grep-find] uses the `xargs' utility by default. ! ! If nil, it uses `grep -exec'; if `gnu', it uses `find -print0' and `xargs -0'; ! if not nil and not `gnu', it uses `find -print' and `xargs'. ! ! This variable's value takes effect when `compile.el' is loaded ! by influencing the default value for the variable `grep-find-command'.") Ditto. The current doc string is 50% similar to Kevin's work. Can someone rewrite that? ;; Setting process-setup-function makes exit-message-function work ;; even when async processes aren't supported. (let* ((compilation-process-setup-function 'grep-process-setup) (buf (compile-internal (concat command-args " " grep-null-device) "No more grep hits" "grep" ;; Give it a simpler regexp to match. nil grep-regexp-alist))))) I think we're ok with that much.