Remove redundant save of point and mark

`org-with-point-at` will do this already (at least for point).
This commit is contained in:
Daniel - 2021-04-01 16:51:46 +02:00
父節點 1916eb6736
當前提交 8f4fa01304
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 1C7071A75BB72D64
共有 1 個檔案被更改,包括 2 行新增3 行删除

查看文件

@ -748,9 +748,8 @@ in an Org Mode buffer or when the clock is not active."
(user-error "Not in Org Mode, aborting"))
(unless org-clock-marker
(user-error "No clocked-in task, aborting"))
(save-mark-and-excursion
(org-with-point-at org-clock-marker
(org-store-link nil t)))
(org-with-point-at org-clock-marker
(org-store-link nil t))
(pcase-let ((`(,location ,description) (cl-first org-stored-links)))
(org-insert-link nil location description)))