emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: "Dr. Volker Zell" <dr.volker.zell@oracle.com>
To: emacs-orgmode@gnu.org
Subject: XEmacs fix for small-temporary-file-directory
Date: Wed, 08 Dec 2010 09:05:26 +0100	[thread overview]
Message-ID: <7zei9slmex.fsf@vzell-de.de.oracle.com> (raw)

Hi

Can anyone please apply the following patch to ob-eval to make xemacs happy.
This was be the last reference to small-temporary-file-directory by the way.

--- ob-eval.el.orig     2010-11-01 13:58:45.000000000 +0100
+++ ob-eval.el  2010-12-02 19:03:15.140625000 +0100
@@ -138,9 +138,9 @@
         (if error-buffer
             (make-temp-file
              (expand-file-name "scor"
-                               (or (unless (featurep 'xemacs)
-                                     small-temporary-file-directory)
-                                   temporary-file-directory)))
+                                (if (featurep 'xemacs)
+                                    (temp-directory)
+                                  temporary-file-directory)))
           nil))
        exit-status)
     (if (or replace


Thanks
  Volker
  

             reply	other threads:[~2010-12-08  8:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-08  8:05 Dr. Volker Zell [this message]
2010-12-21  9:34 ` XEmacs fix for small-temporary-file-directory Dr. Volker Zell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7zei9slmex.fsf@vzell-de.de.oracle.com \
    --to=dr.volker.zell@oracle.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).