From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Richard M. Stallman" Newsgroups: gmane.emacs.bugs Subject: Re: Emacs bug when working with directories starting with '/:' ??? Date: Sat, 23 Jul 2005 20:01:09 -0400 Message-ID: References: <200507212105.j6LL5Fh4004642@carnot.physics.umd.edu> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1122163499 25180 80.91.229.2 (24 Jul 2005 00:04:59 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 24 Jul 2005 00:04:59 +0000 (UTC) Cc: payerle@phys.umd.edu, bug-gnu-emacs@gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sun Jul 24 02:04:56 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DwTyz-0000HO-4C for geb-bug-gnu-emacs@m.gmane.org; Sun, 24 Jul 2005 02:04:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DwU1C-0002Fp-Ap for geb-bug-gnu-emacs@m.gmane.org; Sat, 23 Jul 2005 20:06:58 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DwTz8-0001Yg-8j for bug-gnu-emacs@gnu.org; Sat, 23 Jul 2005 20:04:50 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DwTz7-0001YI-MS for bug-gnu-emacs@gnu.org; Sat, 23 Jul 2005 20:04:49 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DwTyG-00014E-03 for bug-gnu-emacs@gnu.org; Sat, 23 Jul 2005 20:03:56 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DwU60-0005wT-Jd for bug-gnu-emacs@gnu.org; Sat, 23 Jul 2005 20:11:56 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1DwTvZ-0000XN-W0; Sat, 23 Jul 2005 20:01:10 -0400 Original-To: "Thomas M. Payerle" In-reply-to: <200507212105.j6LL5Fh4004642@carnot.physics.umd.edu> (payerle@benfranklin.physics.umd.edu) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:12576 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:12576 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)