From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Sean O'Rourke" Newsgroups: gmane.emacs.devel Subject: trivial patch: pcomplete-entries should bind completion-ignore-case Date: Thu, 05 Jul 2007 21:57:25 -0700 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1183697859 11363 80.91.229.12 (6 Jul 2007 04:57:39 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 6 Jul 2007 04:57:39 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 06 06:57:38 2007 connect(): Connection refused 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 1I6fsu-00041i-TP for ged-emacs-devel@m.gmane.org; Fri, 06 Jul 2007 06:57:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I6fsu-0004U7-4d for ged-emacs-devel@m.gmane.org; Fri, 06 Jul 2007 00:57:36 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I6fsq-0004Sp-2k for emacs-devel@gnu.org; Fri, 06 Jul 2007 00:57:32 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I6fsp-0004Rv-Dr for emacs-devel@gnu.org; Fri, 06 Jul 2007 00:57:31 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I6fsp-0004Ro-6L for emacs-devel@gnu.org; Fri, 06 Jul 2007 00:57:31 -0400 Original-Received: from outbound1.ucsd.edu ([132.239.1.205]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1I6fso-0004hG-M0 for emacs-devel@gnu.org; Fri, 06 Jul 2007 00:57:30 -0400 Original-Received: from smtp.ucsd.edu (smtp.ucsd.edu [132.239.1.49]) by outbound1.ucsd.edu (8.13.6/8.13.6) with ESMTP id l664vSkb041070 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 5 Jul 2007 21:57:29 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; s=2007001; d=ucsd.edu; c=simple; q=dns; b=kYSt81B8V9NLpF288MwVORggYWMP6M0oG/BuZk/8ks+8GrW0S9CQioqW7lSmvxB/M OFtRQix7WKVbLquODdIBA== Original-Received: from mister-foo.local ([128.54.220.221]) by smtp.ucsd.edu (8.13.6/8.13.4) with ESMTP id l664vRTL085186 for ; Thu, 5 Jul 2007 21:57:28 -0700 (PDT) User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (darwin) X-detected-kernel: FreeBSD 6.x (1) 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:74377 Archived-At: For consistency, pcomplete-entries should bind completion-ignore-case to pcomplete-ignore-case (for the benefit of file-name-all-completions). /s Index: pcomplete.el =================================================================== RCS file: /cvsroot/emacs/emacs/lisp/pcomplete.el,v retrieving revision 1.30 diff -u -r1.30 pcomplete.el --- pcomplete.el 14 Jun 2007 00:07:15 -0000 1.30 +++ pcomplete.el 6 Jul 2007 04:55:34 -0000 @@ -711,6 +711,7 @@ If no directory information can be extracted from the completed component, `default-directory' is used as the basis for completion." (let* ((name (substitute-env-vars pcomplete-stub)) + (completion-ignore-case pcomplete-ignore-case) (default-directory (expand-file-name (or (file-name-directory name) default-directory)))