filename="0001-org-id-Fix-behavior-when-org-id-extra-files-is-a-sym.patch" Content-Transfer-Encoding: 8bit From a87a4b567f2cc86a2eb502fd40238f463ca83daa Mon Sep 17 00:00:00 2001 From: Erik Hetzner Date: Sat, 4 Jul 2020 12:12:00 -0700 Subject: [PATCH] org-id: Fix behavior when `org-id-extra-files' is a symbol * lisp/org-id.el (org-id-update-id-locations): When `org-id-extra-files' is a symbol, it should be evaluated as a variable. In 37a5020bb, `org-id-update-id-locations' was rewritten, and the functionality to allow the variable `org-id-extra-files' to be a symbol that references another variable was removed. This changes restores that functionality. --- lisp/org-id.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/org-id.el b/lisp/org-id.el index 9456b0629..387d8268b 100644 --- a/lisp/org-id.el +++ b/lisp/org-id.el @@ -495,7 +495,9 @@ When FILES is given, scan also these files." ;; Agenda files and all associated archives. (org-agenda-files t org-id-search-archives) ;; Explicit extra files. - (unless (symbolp org-id-extra-files) org-id-extra-files) + (if (symbolp org-id-extra-files) + (symbol-value org-id-extra-files) + org-id-extra-files) ;; All files known to have IDs. org-id-files ;; Additional files from function call. -- 2.27.0