[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: the change in org-time-stamp-custom-formats
From: |
Ihor Radchenko |
Subject: |
Re: the change in org-time-stamp-custom-formats |
Date: |
Tue, 09 May 2023 13:45:12 +0000 |
Uwe Brauer <oub@mat.ucm.es> writes:
> But I have files with the setting
>
> #+begin_src emacs-lisp :results silent :exports none
> (custom-set-variables
> '(org-display-custom-times t)
> '(org-time-stamp-custom-formats '("<%d.%m.%Y>" . "<%d.%m.%Y %I:%M %p>")))
> #+end_src
>
>
> Should I change that to
> '(org-time-stamp-custom-formats '("%d.%m.%Y" . "%d.%m.%Y %I:%M %p")))
You can. Or you can leave things unchanged.
What we now do with these values is
;; Strip brackets, if any.
(when (or (and (string-prefix-p "<" format)
(string-suffix-p ">" format))
(and (string-prefix-p "[" format)
(string-suffix-p "]" format)))
(setq format (substring format 1 -1)))
So, brackets, if any, are stripped.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>