From: No Wayman <iarchivedmywholelife@gmail.com> To: emacs-orgmode@gnu.org Subject: [BUG] [PATCH] Ensure org-babel-temporary-stable-directory bound-and-true [9.6 (9.6-g713598 @ /home/n/.emacs.d/elpaca/builds/org/)] Date: Tue, 05 Jul 2022 19:21:01 -0400 [thread overview] Message-ID: <87pmijgn5c.fsf@gmail.com> (raw) [-- Attachment #1: Type: text/plain, Size: 71 bytes --] Updated today and noticed an error when killing Emacs. See attached. [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: 0001-lisp-ob-core.el-fix-file-exists-p-error.patch --] [-- Type: text/x-patch, Size: 1132 bytes --] From fa822d45559267de6af31f9d34be4266af602d03 Mon Sep 17 00:00:00 2001 From: Nicholas Vollmer <iarchivedmywholelife@gmail.com> Date: Tue, 5 Jul 2022 19:03:44 -0400 Subject: [PATCH] lisp/ob-core.el: fix file-exists-p error * ob-core.el (org-babel-remove-temporary-stable-directory): Ensure org-babel-temporary-stable-directory is non-nil before checking if it is on disk. Otherwise an error is thrown during kill-emacs-hook. --- lisp/ob-core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-core.el b/lisp/ob-core.el index 6c379c121..22175a911 100644 --- a/lisp/ob-core.el +++ b/lisp/ob-core.el @@ -3264,7 +3264,7 @@ constructed like the following: PREFIXDATAhashSUFFIX." (defun org-babel-remove-temporary-stable-directory () "Remove `org-babel-temporary-stable-directory' and on Emacs shutdown." - (when (and (boundp 'org-babel-temporary-stable-directory) + (when (and (bound-and-true-p 'org-babel-temporary-stable-directory) (file-exists-p org-babel-temporary-stable-directory)) (let ((org-babel-temporary-directory org-babel-temporary-stable-directory)) -- 2.37.0
next reply other threads:[~2022-07-05 23:22 UTC|newest] Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-07-05 23:21 No Wayman [this message] 2022-07-06 0:10 ` No Wayman 2022-07-07 9:31 ` Ihor Radchenko
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=87pmijgn5c.fsf@gmail.com \ --to=iarchivedmywholelife@gmail.com \ --cc=emacs-orgmode@gnu.org \ --subject='Re: [BUG] [PATCH] Ensure org-babel-temporary-stable-directory bound-and-true [9.6 (9.6-g713598 @ /home/n/.emacs.d/elpaca/builds/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
Code repositories for project(s) associated with this 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).