diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-06-23 18:14:12 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-06-23 18:14:12 -0500 |
commit | 0e0cc8b6e7047f178702cfda5a367f0fc449d885 (patch) | |
tree | 72876d11077708a658cb16d930231d2bb2a046fa /org-urgency.el | |
parent | c314cd0022fcb192bd487038598c6049b65eaa7d (diff) | |
download | org-urgency-0e0cc8b6e7047f178702cfda5a367f0fc449d885.tar.gz org-urgency-0e0cc8b6e7047f178702cfda5a367f0fc449d885.zip |
Fix regression in 4ab0f6c
Diffstat (limited to 'org-urgency.el')
-rw-r--r-- | org-urgency.el | 4 |
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))) |