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
parent 1916eb6736
commit 8f4fa01304
Non sono state trovate chiavi note per questa firma nel database
ID Chiave GPG: 1C7071A75BB72D64
1 ha cambiato i file con 2 aggiunte e 3 eliminazioni

Vedi File

@ -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)))