From 0e0cc8b6e7047f178702cfda5a367f0fc449d885 Mon Sep 17 00:00:00 2001 From: Simon Parri Date: Mon, 23 Jun 2025 18:14:12 -0500 Subject: Fix regression in 4ab0f6c --- org-urgency.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'org-urgency.el') 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))) -- cgit v1.2.3