Variable: org-babel-temporary-stable-directory

org-babel-temporary-stable-directory is a variable defined in ob-core.el.gz.

Value

nil

Documentation

Directory to hold temporary files created to execute code blocks.

Used by org-babel-temp-file. This directory will be removed on Emacs shutdown.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
(defvar org-babel-temporary-stable-directory
  (unless noninteractive
    (let (dir)
      (while (or (not dir) (file-exists-p dir))
        (setq dir (expand-file-name
                   (format "babel-stable-%d" (random 1000))
                   temporary-file-directory)))
      (make-directory dir)
      dir))
  "Directory to hold temporary files created to execute code blocks.
Used by `org-babel-temp-file'.  This directory will be removed on
Emacs shutdown.")