From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Stefan Newsgroups: gmane.emacs.devel Subject: Re: patch: fix wrong-type-argument error in vc-registered Date: Tue, 12 Oct 2004 21:19:42 -0400 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: References: <87pt3ohu06.wl%yoichi@geiin.org> <87llebtqn6.wl%yoichi@geiin.org> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1097630426 14841 80.91.229.6 (13 Oct 2004 01:20:26 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 13 Oct 2004 01:20:26 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Oct 13 03:20:12 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CHXoJ-0005V8-00 for ; Wed, 13 Oct 2004 03:20:11 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CHXvK-00020o-S1 for ged-emacs-devel@m.gmane.org; Tue, 12 Oct 2004 21:27:26 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CHXv9-00020b-N3 for emacs-devel@gnu.org; Tue, 12 Oct 2004 21:27:15 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CHXv9-00020A-0m for emacs-devel@gnu.org; Tue, 12 Oct 2004 21:27:15 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CHXv8-000207-OC for emacs-devel@gnu.org; Tue, 12 Oct 2004 21:27:14 -0400 Original-Received: from [206.47.199.141] (helo=simmts12-srv.bellnexxia.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CHXnz-0004P3-9N for emacs-devel@gnu.org; Tue, 12 Oct 2004 21:19:51 -0400 Original-Received: from empanada.home ([67.71.116.162]) by simmts12-srv.bellnexxia.net (InterMail vM.5.01.06.10 201-253-122-130-110-20040306) with ESMTP id <20041013011950.FLIO1580.simmts12-srv.bellnexxia.net@empanada.home>; Tue, 12 Oct 2004 21:19:50 -0400 Original-Received: by empanada.home (Postfix, from userid 502) id 4A75431DF86; Tue, 12 Oct 2004 21:19:43 -0400 (EDT) Original-To: Yoichi NAKAYAMA In-Reply-To: <87llebtqn6.wl%yoichi@geiin.org> (Yoichi NAKAYAMA's message of "Wed, 13 Oct 2004 09:20:45 +0900") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/21.3.50 (darwin) 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: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:28328 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:28328 > For example, mime-view.el in EMIKO module > http://cvs.m17n.org/cgi-bin/viewcvs/semi/mime-view.el?rev=1.150.2.33.2.38&only_with_tag=emiko-1_14&content-type=text/vnd.viewcvs-markup > calles set-auto-mode after setting buffer-file-name to non-absolute path > for highlighting. mime-view.el should be fixed then: buffer-file-name needs to have an absolute path. Several other packages rely on this. Admittedly, it seems that vc-registered is the only function that's always used that relies on this, so fixing it will provide the illusion that things work, but in reality, they'll break with things like uniquify as well (to name one other case I happen to know of). Stefan