help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: Elisp - Function returning a list


From: Emanuel Berg
Subject: Re: Elisp - Function returning a list
Date: Wed, 16 Dec 2020 06:39:24 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

steve-humphreys wrote:

> Is using "setq frq" and "setq tim" good
>
> (defun agenda-tgrd (&optional tstr tend tskp)
>    "Sets the time grid for the agenda."
>    (interactive "n StartTime: \nn EndTime: \nn SkipTime: ")
>    (let ( (tstr (or tstr 800))
>           (tend (or tend 1500))
>           (tskp (or tskp 100))
>           frq tim)
>       (setq frq '(daily today))
>       (setq tim (number-sequence tstr tend tskp))
>       (setq org-agenda-time-grid `(,frq ,tim "------" "---"))) )

It is better to do all computation in the `let's, then use
them. No `setq' needed.

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




reply via email to

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