On Thu, 27 May 2004 18:15:25 +0200
Matthieu Moy <[EMAIL PROTECTED]> wrote:
> Andrew Heybey <[EMAIL PROTECTED]> writes:
>
> > "/home/ath/proj/bin/foo/./{arch}/++pristine-trees/...". It should
> > be trying to open /home/ath/proj/{arch}/++pristine-trees/...".
>
> First, I'd advise you to use a greedy and sparse revision library to
> get rid of pristine-trees.
I have started doing that, but still have working directories hanging
around from before...
> > --- orig/xtla.el
> > +++ mod/xtla.el
> > @@ -1712,6 +1712,7 @@
> > (concat (file-name-nondirectory file)
> > "<" (or revision
> > "original") ">"))))
> > + (setq original (concat (tla-tree-root) "/" original))
> > (with-current-buffer buffer-orig
> > (erase-buffer)
> > (insert-file-contents original)
>
> Nice try, but it doesn't work if you use a revision library because
> then, `original' is an absolute path.
Doh!
> Try this instead:
thanks.
andrew