From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marco Wahl Subject: Re: Bug: org-read-date ignores hours? Date: Tue, 11 Feb 2020 13:49:52 +0100 Message-ID: <84a75p9tlb.fsf@gmail.com> References: <84h83yr0wq.fsf@gmail.com> <878sl9mnow.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:59738) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1UzG-0004gF-K1 for emacs-orgmode@gnu.org; Tue, 11 Feb 2020 07:49:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j1UzF-0007fy-O4 for emacs-orgmode@gnu.org; Tue, 11 Feb 2020 07:49:58 -0500 In-Reply-To: <878sl9mnow.fsf@gnu.org> (Bastien's message of "Tue, 11 Feb 2020 11:18:55 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane-mx.org@gnu.org Sender: "Emacs-orgmode" To: Bastien Cc: org-mode-email Bastien writes: > I tried=20 > > (progn > =C2=A0 (setq org-popup-calendar-for-date-prompt t) > =C2=A0 (org-read-date t)) > > (progn > =C2=A0 (setq org-popup-calendar-for-date-prompt nil) > =C2=A0 (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!