From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] /srv/bzr/emacs/trunk r105295: * lisp/progmodes/etags.el (etags-file-of-tag, etags-tags-table-files) Date: Tue, 02 Aug 2011 00:51:03 -0400 Message-ID: References: Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1312260678 20165 80.91.229.12 (2 Aug 2011 04:51:18 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 2 Aug 2011 04:51:18 +0000 (UTC) Cc: sds@gnu.org, emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Aug 02 06:51:14 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Qo6wh-0003A5-P0 for ged-emacs-devel@m.gmane.org; Tue, 02 Aug 2011 06:51:11 +0200 Original-Received: from localhost ([::1]:39949 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qo6wg-0006GT-M4 for ged-emacs-devel@m.gmane.org; Tue, 02 Aug 2011 00:51:10 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:58066) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qo6wc-0006GC-2N for emacs-devel@gnu.org; Tue, 02 Aug 2011 00:51:08 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qo6wZ-0007U8-C9 for emacs-devel@gnu.org; Tue, 02 Aug 2011 00:51:05 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:39419) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qo6wZ-0007U4-Ah for emacs-devel@gnu.org; Tue, 02 Aug 2011 00:51:03 -0400 Original-Received: from eliz by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1Qo6wZ-0004W6-2Q; Tue, 02 Aug 2011 00:51:03 -0400 In-reply-to: (message from Stefan Monnier on Mon, 01 Aug 2011 23:39:17 -0400) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.10 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:142673 Archived-At: > From: Stefan Monnier > Date: Mon, 01 Aug 2011 23:39:17 -0400 > Cc: emacs-devel@gnu.org > > > * lisp/progmodes/etags.el (etags-file-of-tag, etags-tags-table-files) > > (etags-tags-included-tables): Call `convert-standard-filename' on > > the file names contained in TAGS so that windows Emacs can handle > > TAGS files created by cygwin ctags. > > Is that really right? > I mean, convert-standard-filename should only ever be called on absolute > file names, and we have no guarantee that file names in TAGS are > absolute, do we? convert-standard-filename can be called on any file name, not just an absolute ones. Of course, it will only do what Sam wants if the file name begins with /cygdrive/, i.e. is absolute, but your assertion seemed to be more general than that.