[email protected] 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
