emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] XEmacs fix for small-temporary-file-directory


From: Dr. Volker Zell
Subject: [Orgmode] XEmacs fix for small-temporary-file-directory
Date: Wed, 08 Dec 2010 09:05:26 +0100

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 via email to

[Prev in Thread] Current Thread [Next in Thread]