all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Stefan Monnier" <monnier+gnu/emacs/pretest@rum.cs.yale.edu>
Cc: Emacs Devel <emacs-devel@gnu.org>
Subject: Re: Possible bug in resolving "~" folder
Date: Mon, 26 May 2003 10:31:20 -0400	[thread overview]
Message-ID: <200305261431.h4QEVKrt000444@rum.cs.yale.edu> (raw)
In-Reply-To: 20030526051906.F3F785F1F1@smtp.us2.messagingengine.com

> Hello,
>   I am using Emacs 21.3.50 (CVS) on W2K (MSVC 6.0 build).
> Scenerio:
> - Open a file (as in my case:"~/bin/cinclude.pl")
> - Do a Save As (to "~/bin/cinclude1_0.pl")
> - A call to (vc-mcvs-registered "~/bin/cinclude1_0.pl") is made
> - In the "while" loop, a call to (file-name-directory "~") [progressively
> going to top dir]
> - The above call returns "nil". IMHO, it should have called
> "expand-file-name" internally inside "file-name-directory" or should
> handle 'nil' and return 'nil' instead of throwing error.
> 
> A fix which solved my problem was: in loaddefs.el @23991, call
> expand-file-name
> (defun vc-mcvs-registered (file)
>   (let ((dir file))
>     (while (and (stringp dir)
>  		(not (equal dir (setq dir (file-name-directory (expand-file-name dir)))))) ;; Modified here
>       (setq dir (if (file-directory-p
>  		     (expand-file-name "MCVS/CVS" dir))
>  		    t (directory-file-name dir))))
>     (if (eq dir t)
>  	(progn
>  	  (load "vc-mcvs")
>  	  (vc-mcvs-registered file)))))

It's been fixed a while ago in vc-mcvs.el, but it seems nobody has
refreshed the loaddefs.el file since.  The fix doesn't do the
expand-file-name but checks nil instead because I thought it was
neat that the search stops at ~ rather than going all the way to /.

Could someone commit a refreshed version of loaddefs.el ?
Mine has all kinds of unrelated stuff in it.


	Stefan

      reply	other threads:[~2003-05-26 14:31 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-05-26  5:19 Possible bug in resolving "~" folder Dhruva Krishnamurthy
2003-05-26 14:31 ` Stefan Monnier [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200305261431.h4QEVKrt000444@rum.cs.yale.edu \
    --to=monnier+gnu/emacs/pretest@rum.cs.yale.edu \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.