changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/organ/element/lesser/clock.lisp

changeset 133: a5ae5a58c4cd
parent: 99f2ab6bc8ba
author: ellis <ellis@rwest.io>
date: Wed, 27 Dec 2023 17:26:51 -0500
permissions: -rw-r--r--
description: org element comments and type definitions
1 ;;; lib/organ/element/lesser/clock.lisp --- Org Clock Element
2 
3 ;; Clock elements match the following:
4 
5 #|
6 clock: INACTIVE-TIMESTAMP
7 clock: INACTIVE-TIMESTAMP-RANGE DURATION
8 |#
9 
10 ;; DURATION matches '=> HH:MM' where HH is +inf and MM is 2 digits
11 ;; (realistically 0-59).
12 
13 ;;; Code:
14 (in-package :organ)
15 
16 (define-org-element clock (timestamp duration) :lesser t)