emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Possible problem with org-agenda-time-grid


From: Ihor Radchenko
Subject: Re: Possible problem with org-agenda-time-grid
Date: Sat, 12 Dec 2020 10:23:47 +0800

steve-humphreys@gmx.com writes:

> (setq tm '(number-sequence 800 2000 100))
> (setq org-agenda-time-grid '((today daily require-timed) 'tm
>    "" "----------------"))

You need
(setq tm (number-sequence 800 2000 100))
(setq org-agenda-time-grid `((today daily require-timed) ,tm
    "" "----------------"))

See manual page "10 Evaluation" for details. Specifically, you need to
read 10.3 Quoting and 10.4 Backquote

Best,
Ihor




reply via email to

[Prev in Thread] Current Thread [Next in Thread]