[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: read-file-name-internal changed
From: |
Tak Ota |
Subject: |
Re: read-file-name-internal changed |
Date: |
Wed, 30 Mar 2005 15:24:36 -0800 (PST) |
I confirm that the problem is now fixed. Thank you.
-Tak
Wed, 30 Mar 2005 14:33:45 -0800: "Stefan Monnier" <address@hidden> wrote:
> >>>>> "Stefan" == Stefan Monnier <address@hidden> writes:
>
> >> Some recent change, I suspect Stefan's change on 2005-03-28, modified
> >> the behavior of read-file-name-internal which is called from ffap.el.
> >> It used to return
>
> >> "//server/"
> >> for
> >> (read-file-name-internal "//server/" "c:/emacs/" nil)
>
> > Hmm.... What does (substitute-in-file-name "//server/") return?
>
> I see I got it, I've just installed the patch below which should fix
> your problem. Please confirm,
> Than you,
>
>
> Stefan
>
>
> Index: fileio.c
> ===================================================================
> RCS file: /cvsroot/emacs/emacs/src/fileio.c,v
> retrieving revision 1.534
> diff -u -u -b -r1.534 fileio.c
> --- fileio.c 28 Mar 2005 21:31:14 -0000 1.534
> +++ fileio.c 30 Mar 2005 22:29:14 -0000
> @@ -2078,7 +2078,7 @@
> #if defined (APOLLO) || defined (WINDOWSNT) || defined(CYGWIN)
> /* // at start of file name is meaningful in Apollo,
> WindowsNT and Cygwin systems. */
> - && !(IS_DIRECTORY_SEP (p[0]) && p - 1 != nm)
> + && !(IS_DIRECTORY_SEP (p[0]) && p - 1 == nm)
> #endif /* not (APOLLO || WINDOWSNT || CYGWIN) */
> )
> {