[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Emacs bug when working with directories starting with '/:' ???
From: |
Richard M. Stallman |
Subject: |
Re: Emacs bug when working with directories starting with '/:' ??? |
Date: |
Sat, 23 Jul 2005 20:01:09 -0400 |
This fixes it in the current development sources.
I'm not sure if this is enough to fix it in Emacs 21.
*** files.el 22 Jul 2005 00:55:52 -0400 1.781
--- files.el 23 Jul 2005 17:30:32 -0400
***************
*** 4844,4850 ****
((eq method 'add)
(concat "/:" (apply operation arguments)))
((eq method 'quote)
! (prog1 (apply operation arguments)
(setq buffer-file-name (concat "/:" buffer-file-name))))
((eq method 'unquote-then-quote)
(let (res)
--- 4844,4851 ----
((eq method 'add)
(concat "/:" (apply operation arguments)))
((eq method 'quote)
! (unwind-protect
! (apply operation arguments)
(setq buffer-file-name (concat "/:" buffer-file-name))))
((eq method 'unquote-then-quote)
(let (res)