From c33ea8f9e238b3984dc1a1f01f241cc417b1e087 Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Fri, 30 Jun 2023 15:49:57 +0300 Subject: [PATCH] org-refile: Fix typo in 94c2c8d92 * lisp/org-refile.el (org-refile): Fix typo in variable name. --- lisp/org-refile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-refile.el b/lisp/org-refile.el index 5c2596641..b84b165f7 100644 --- a/lisp/org-refile.el +++ b/lisp/org-refile.el @@ -600,7 +600,7 @@ prefix argument (`C-u C-u C-u C-c C-w')." :last-capture-marker))) (when bookmark-name (condition-case err - (bookmark-set bookmark) + (bookmark-set bookmark-name) (error (message (format "Bookmark set error: %S" err)))))) (move-marker org-capture-last-stored-marker (point)))