Remove redundant save of point and mark

`org-with-point-at` will do this already (at least for point).
Cette révision appartient à :
Daniel - 2021-04-01 16:51:46 +02:00
Parent 1916eb6736
révision 8f4fa01304
Signature inconnue de Gitea
ID de la clé GPG: 1C7071A75BB72D64
1 fichiers modifiés avec 2 ajouts et 3 suppressions

Voir le fichier

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