From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: accept more version names in file-name-sans-versions Date: Wed, 19 Sep 2007 18:14:57 -0700 Message-ID: <200709200114.l8K1Ev2m009887@oogie-boogie.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1190250984 26232 80.91.229.12 (20 Sep 2007 01:16:24 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 20 Sep 2007 01:16:24 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Sep 20 03:16:24 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 1IYAeV-000535-Qp for ged-emacs-devel@m.gmane.org; Thu, 20 Sep 2007 03:16:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IYAeT-0008B0-QE for ged-emacs-devel@m.gmane.org; Wed, 19 Sep 2007 21:16:21 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IYAeQ-0008Av-UA for emacs-devel@gnu.org; Wed, 19 Sep 2007 21:16:18 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IYAeP-0008Ah-EL for emacs-devel@gnu.org; Wed, 19 Sep 2007 21:16:17 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IYAeP-0008Ad-8l for emacs-devel@gnu.org; Wed, 19 Sep 2007 21:16:17 -0400 Original-Received: from oogie-boogie.ics.uci.edu ([128.195.1.41]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IYAeO-0002zk-Q7 for emacs-devel@gnu.org; Wed, 19 Sep 2007 21:16:17 -0400 Original-Received: from mothra.ics.uci.edu (mothra.ics.uci.edu [128.195.6.93]) by oogie-boogie.ics.uci.edu (8.13.6/8.13.6) with ESMTP id l8K1Ev2m009887 for ; Wed, 19 Sep 2007 18:14:58 -0700 (PDT) Original-Lines: 12 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@mothra.ics.uci.edu X-Detected-Kernel: Solaris 9 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:79341 Archived-At: For a file file.c managed by git doing C-u C-x v = master RET will create the buffer file.c.~master~ with the major-mode fundamental-mode not c-mode. The reason is that file-name-sans-versions only looks for revision names matching ".~[0-9.]+~", so .~master~ does not match. Any reason not to add a-z to that regexp?