Fix error with %e agenda prefix format when there is no effort set
This commit is contained in:
parent
76297448c9
commit
0cd6d82d39
|
@ -5525,6 +5525,8 @@ Any match of REMOVE-RE will be removed from TXT."
|
|||
(when effort
|
||||
(setq neffort (org-duration-string-to-minutes effort)
|
||||
effort (setq effort (concat "[" effort "]")))))
|
||||
;; prevent erroring out with %e format when there is no effort
|
||||
(or effort (setq effort ""))
|
||||
|
||||
(when remove-re
|
||||
(while (string-match remove-re txt)
|
||||
|
@ -5562,6 +5564,7 @@ Any match of REMOVE-RE will be removed from TXT."
|
|||
(>= (length category) org-prefix-category-max-length))
|
||||
(setq category (substring category 0 (1- org-prefix-category-max-length)))))
|
||||
;; Evaluate the compiled format
|
||||
(assert effort)
|
||||
(setq rtn (concat (eval org-prefix-format-compiled) txt))
|
||||
|
||||
;; And finally add the text properties
|
||||
|
|
Loading…
Reference in New Issue