|
@@ -3562,10 +3562,13 @@ CONTENTS is nil."
|
|
|
(and hour-start minute-start)
|
|
|
(and time-range-p hour-end)
|
|
|
(and time-range-p minute-end)
|
|
|
- (concat (case (org-element-property :repeater-type timestamp)
|
|
|
- (cumulate "+") (catch-up "++") (restart ".+"))
|
|
|
- (org-element-property :repeater-value timestamp)
|
|
|
- (org-element-property :repeater-unit timestamp)))))
|
|
|
+ (concat
|
|
|
+ (case (org-element-property :repeater-type timestamp)
|
|
|
+ (cumulate "+") (catch-up "++") (restart ".+"))
|
|
|
+ (let ((val (org-element-property :repeater-value timestamp)))
|
|
|
+ (and val (number-to-string val)))
|
|
|
+ (case (org-element-property :repeater-unit timestamp)
|
|
|
+ (hour "h") (day "d") (week "w") (month "m") (year "y"))))))
|
|
|
((active-range inactive-range)
|
|
|
(let ((minute-start (org-element-property :minute-start timestamp))
|
|
|
(minute-end (org-element-property :minute-end timestamp))
|