Bastien <[email protected]> writes:
> I tried
>
> (progn
> (setq org-popup-calendar-for-date-prompt t)
> (org-read-date t))
>
> (progn
> (setq org-popup-calendar-for-date-prompt nil)
> (org-read-date t))
>
> from master and could not reproduce the problem (not having the
> inserted time string taken into account).
>
> Marco, can you reproduce the problem in master?
I get back a date with a time in each case.
Concretely find the return values below if I do
C-u C-x C-e 11:55 RET
after each of the two sexp's below.
(progn
(setq org-popup-calendar-for-date-prompt t)
(org-read-date t))
"2020-02-11 11:55"
(progn
(setq org-popup-calendar-for-date-prompt nil)
(org-read-date t))
"2020-02-11 11:55"
In summary I can say that this LGTM and I can't reproduce the problem.
Ciao!