From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/44521 Path: main.gmane.org!not-for-mail From: Florian Weimer Newsgroups: gmane.emacs.gnus.general Subject: Re: {PATCH] minor gpg.el fix for MS Windows Date: Tue, 30 Apr 2002 17:24:24 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: <87adrltdjr.fsf@deneb.enyo.de> References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1020180462 26591 127.0.0.1 (30 Apr 2002 15:27:42 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 30 Apr 2002 15:27:42 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 172ZXa-0006ue-00 for ; Tue, 30 Apr 2002 17:27:42 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 172ZWH-0000U9-00; Tue, 30 Apr 2002 10:26:21 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 30 Apr 2002 10:26:34 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id KAA02190 for ; Tue, 30 Apr 2002 10:26:21 -0500 (CDT) Original-Received: (qmail 16078 invoked by alias); 30 Apr 2002 15:24:42 -0000 Original-Received: (qmail 16073 invoked from network); 30 Apr 2002 15:24:42 -0000 Original-Received: from cygnus-ext.enyo.de (HELO mail.enyo.de) (212.9.189.162) by gnus.org with SMTP; 30 Apr 2002 15:24:42 -0000 Original-Received: from [212.9.189.171] (helo=deneb.enyo.de) by mail.enyo.de with esmtp (Exim 3.34 #2) id 172ZUT-0008Hw-00 for ding@gnus.org; Tue, 30 Apr 2002 17:24:29 +0200 Original-Received: from fw by deneb.enyo.de with local (Exim 3.34 #4) id 172ZUO-0000KE-00 for ding@gnus.org; Tue, 30 Apr 2002 17:24:24 +0200 Original-To: ding@gnus.org In-Reply-To: (Dmitry Bely's message of "Tue, 30 Apr 2002 19:11:01 +0400") Original-Lines: 16 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.2 (i686-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:44521 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:44521 Dmitry Bely writes: > (defcustom gpg-temp-directory > - (expand-file-name "~/tmp") > + (if (memq system-type '(windows-nt cygwin32 win32 w32 mswindows)) > + (temp-directory) > + (expand-file-name "~/tmp")) > "Directory for temporary files. > If you are running Emacs 20, this directory must have mode 0700." > :tag "Temp directory" I'm not sure if this is correct. Is 'temp-directory' really available on Windows? It's not documented in the Lisp manual. In addition, what about multi-user versions of Windows? Is this a shared directory?