all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: steve-humphreys@gmx.com
To: Help Gnu Emacs <help-gnu-emacs@gnu.org>
Subject: ELisp - Making a list from a function returning a number
Date: Thu, 17 Dec 2020 12:42:13 +0100	[thread overview]
Message-ID: <trinity-1cbee313-87f4-4a73-b2e5-5886a215ec7c-1608205333758@3c-app-mailcom-bs11> (raw)


I have written a function to return time as a number so I can set the temporal grid
in org-agenda.

I was previously using number-sequence until someone fount a problem.  Now I have timfutur to
give me the next time (time interval "tsk" after time "tim")

(tim (number-sequence tstr tend tskp))

So what I have remaining to do is to make a list of numbers representing the times when the
agenda grids are displayed.


(defun timfutur (tim tsk)

   (let* ( (thr (/ tim 100))
           (tmn (- tim (* thr 100)))

           (tinc_mn (+ tmn tsk))
           (tinc_hr (/ (+ tmn tsk) 60))
           (tinc_mn (- tinc_mn (* tinc_hr 60)))

           (thr_futur (* (+ thr tinc_hr) 100))
           (tmn_futur tinc_mn)
           (tim_out (+ thr_futur tmn_futur)) )
      ;; --- body of let ----
      tim_out ))                  ;  function returns last form



             reply	other threads:[~2020-12-17 11:42 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-17 11:42 steve-humphreys [this message]
2020-12-18  2:26 ` ELisp - Making a list from a function returning a number steve-humphreys
2020-12-18  3:01   ` steve-humphreys
2020-12-18 14:43     ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-18 17:53       ` Jean Louis
2020-12-20  5:03         ` Emanuel Berg via Users list for the GNU Emacs text editor
2020-12-20  6:23           ` Jean Louis
2020-12-20  6:30             ` Christopher Dimech
2020-12-20  7:01             ` Emanuel Berg via Users list for the GNU Emacs text editor

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=trinity-1cbee313-87f4-4a73-b2e5-5886a215ec7c-1608205333758@3c-app-mailcom-bs11 \
    --to=steve-humphreys@gmx.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.