1
0
Fork 0

Remove redundant save of point and mark

`org-with-point-at` will do this already (at least for point).
Esse commit está contido em:
Daniel - 2021-04-01 16:51:46 +02:00
commit 8f4fa01304
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados
ID da chave GPG: 1C7071A75BB72D64
1 arquivos alterados com 2 adições e 3 exclusões

Ver arquivo

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