>>>>> On Thu, 04 Mar 2021 21:24:03 +0100, Uwe Brauer <[email protected]> said:
Uwe> I am not acquainted with let-bound (only with let)
'let-bound' is a shorthand for saying 'binding a value using let'
Uwe> So are you saying I should may use defadvice to modify org-capture?
Well, you have control over how org-capture is invoked, so you could
do:
(defun my-org-capture ()
(let ((org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a>")))
(org-capture)))
although you could do it with advice if you wanted. Untested, of course :-)
Robert
--