emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* XEmacs fix for small-temporary-file-directory
@ 2010-12-08  8:05 Dr. Volker Zell
  2010-12-21  9:34 ` Dr. Volker Zell
  0 siblings, 1 reply; 2+ messages in thread
From: Dr. Volker Zell @ 2010-12-08  8:05 UTC (permalink / raw)
  To: emacs-orgmode

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
  

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-12-21  9:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-08  8:05 XEmacs fix for small-temporary-file-directory Dr. Volker Zell
2010-12-21  9:34 ` Dr. Volker Zell

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).