diff options
author | Kyle Meyer <kyle@kyleam.com> | 2022-03-06 20:18:26 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2022-03-06 20:18:26 -0500 |
commit | cd77fd3b85f50b75d3fe24713a1ca4f622c110dd (patch) | |
tree | b4f963d2474fd922ea257c2c0865c327ff39e9ab /lisp/org/org-capture.el | |
parent | 0090318c6113828688e84fc50a13a8d9c5f71c55 (diff) | |
download | emacs-cd77fd3b85f50b75d3fe24713a1ca4f622c110dd.tar.gz emacs-cd77fd3b85f50b75d3fe24713a1ca4f622c110dd.tar.bz2 emacs-cd77fd3b85f50b75d3fe24713a1ca4f622c110dd.zip |
Update to Org 9.5.2-24-g668205
Diffstat (limited to 'lisp/org/org-capture.el')
-rw-r--r-- | lisp/org/org-capture.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org/org-capture.el b/lisp/org/org-capture.el index 945ea52980c..bfead3aa5af 100644 --- a/lisp/org/org-capture.el +++ b/lisp/org/org-capture.el @@ -1453,7 +1453,8 @@ Of course, if exact position has been required, just put it there." (org-with-point-at pos (when org-capture-bookmark (let ((bookmark (plist-get org-bookmark-names-plist :last-capture))) - (when bookmark (with-demoted-errors (bookmark-set bookmark))))) + (when bookmark (with-demoted-errors "Bookmark set error: %S" + (bookmark-set bookmark))))) (move-marker org-capture-last-stored-marker (point)))))) (defun org-capture-narrow (beg end) |