From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] trunk r113149: * ido.el (ido-read-internal): Fix bug#14620. Date: Mon, 24 Jun 2013 14:02:37 +0200 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1372075404 2270 80.91.229.3 (24 Jun 2013 12:03:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 24 Jun 2013 12:03:24 +0000 (UTC) Cc: Stefan Monnier , Emacs developers To: Leo Liu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 24 14:03:24 2013 Return-path: Envelope-to: ged-emacs-devel@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 1Ur5US-0002xv-4u for ged-emacs-devel@m.gmane.org; Mon, 24 Jun 2013 14:03:24 +0200 Original-Received: from localhost ([::1]:44785 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ur5UR-0004Vl-PH for ged-emacs-devel@m.gmane.org; Mon, 24 Jun 2013 08:03:23 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37311) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ur5UO-0004Vf-Ua for emacs-devel@gnu.org; Mon, 24 Jun 2013 08:03:22 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ur5UN-0001Br-30 for emacs-devel@gnu.org; Mon, 24 Jun 2013 08:03:20 -0400 Original-Received: from mail-ee0-x22c.google.com ([2a00:1450:4013:c00::22c]:42890) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ur5UM-0001BT-P0 for emacs-devel@gnu.org; Mon, 24 Jun 2013 08:03:18 -0400 Original-Received: by mail-ee0-f44.google.com with SMTP id c13so6002561eek.31 for ; Mon, 24 Jun 2013 05:03:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=AA9YwoFkhwrN8Xufb+Feu96vs11S9bmxTtHcSo2ydKc=; b=kbUor1E/FhKVdhT61X3KViGGZ0lDVWDwuHjI3iDZLkA0AmSiLL6/UuflgdBV9Stpgo dDE99EmSMacwn57pXLYRwx1D7IPYAM2iA+qfrwFQ7Xv9NDt2XXm1VwD059VcY5C+XWXi NSm6ij/M6/RQ9tVaBgiBKXBHlrmmTp+kuR8nSpYxHioJtQ6+z5BXwekpanMlfBT2q9YC vxj5tJGCzpD4nIzGBi/YibPMsKffcQuRRFQWa/8z3J0XlYq2xoUpx7R1PWjxMMx/RuKj uu8yRInq6XV1cGLfZGkr7ya2vnl+Q18sJ7uib4VI4BmerTlwVcVKSYJFToe4Xh3d73M0 YdGw== X-Received: by 10.15.21.78 with SMTP id c54mr24232215eeu.14.1372075398007; Mon, 24 Jun 2013 05:03:18 -0700 (PDT) Original-Received: by 10.14.142.4 with HTTP; Mon, 24 Jun 2013 05:02:37 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4013:c00::22c X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:160929 Archived-At: On Mon, Jun 24, 2013 at 6:17 AM, Leo Liu wrote: >> ((string-match (if (memq system-type '(windows-nt ms-dos)) >> "\\`[a-zA-Z]:\\|[\\][^\\]" >> "/[^/]") >> ido-selected) Aka ((string-match-p ...)) as it is used as a predicate, and not to extract match data. J