Hi, I want to change the value of
(defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
"Formats for `format-time-string' which are used for time stamps.
It is not recommended to change this constant.")
to
'("<%Y-%m-%d %a>" . "<%H:%M>")
Not always, but for particular org-mode sessions, even while knowing that defconst values are not really meant to be changed. I wonder if there's a good way to do this?
Thanks...
Edit: I guess my main goal is to be able to be able to insert a time-stamp which contains hours and minutes only, which could similarly be accomplished by defadvice on org-time-stamp, or some other means?