From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Info-insert-dir Date: Thu, 22 Mar 2007 18:50:30 -0400 Message-ID: References: <45FAF396.1030504@gmx.at> <45FD35C4.7060207@gmx.at> <45FE5CDD.3010909@gmx.at> <45FFAFE7.2010702@gmx.at> <4600E0F8.4020507@gmx.at> <46022E19.803@gmx.at> Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1174604059 16789 80.91.229.12 (22 Mar 2007 22:54:19 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 22 Mar 2007 22:54:19 +0000 (UTC) Cc: emacs-devel@gnu.org To: martin rudalics Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Mar 22 23:54:12 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HUWAd-0005y2-DP for ged-emacs-devel@m.gmane.org; Thu, 22 Mar 2007 23:54:11 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUWCS-0006sR-Vl for ged-emacs-devel@m.gmane.org; Thu, 22 Mar 2007 17:56:05 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HUWAu-0005LP-MM for emacs-devel@gnu.org; Thu, 22 Mar 2007 18:54:28 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HUWAu-0005Kk-2w for emacs-devel@gnu.org; Thu, 22 Mar 2007 18:54:28 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUWAt-0005KU-Uy for emacs-devel@gnu.org; Thu, 22 Mar 2007 17:54:28 -0500 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HUW93-00074o-Lu for emacs-devel@gnu.org; Thu, 22 Mar 2007 18:52:33 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1HUW74-0000Kx-CI; Thu, 22 Mar 2007 18:50:30 -0400 In-reply-to: <46022E19.803@gmx.at> (message from martin rudalics on Thu, 22 Mar 2007 08:19:53 +0100) X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:68341 Archived-At: - The next is handled by `with-temp-buffer': (defun Man-support-local-filenames () ... (with-temp-buffer (and (equal (condition-case nil (call-process manual-program nil t nil "--help") (error nil)) In what sense does the use of `with-temp-buffer' "handle" this issue? New buffers copy the default directory from the current buffer, and I don't see any code in `with-temp-buffer' to ensure the default directory exists.