summaryrefslogtreecommitdiff
path: root/org-urgency.el
diff options
context:
space:
mode:
Diffstat (limited to 'org-urgency.el')
-rw-r--r--org-urgency.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/org-urgency.el b/org-urgency.el
index c840ac0..3ac79f7 100644
--- a/org-urgency.el
+++ b/org-urgency.el
@@ -55,7 +55,7 @@
;;; Code:
(require 'org)
-(require 'cl-macs)
+(require 'cl-lib)
;;;###autoload
(defgroup org-urgency ()
@@ -240,7 +240,7 @@ Uses `org-urgency-functions', which see."
(mapcar (lambda (x)
(cl-destructuring-bind (f &rest args) x
(if keep-names
- (cons (cons f 'h args) (apply f h args))
+ (cons (cl-list* f 'h args) (apply f h args))
(apply f h args)))))
(seq-remove #'null)))