From c8c96c65d0663dc7de390de693f8085b515bb57b Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Wed, 24 Aug 2022 02:44:38 +0200 Subject: [PATCH] Add missing require and parent group to org-unique-id gorup --- org-unique-id.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/org-unique-id.el b/org-unique-id.el index 338c094..5c7b9d5 100644 --- a/org-unique-id.el +++ b/org-unique-id.el @@ -41,9 +41,11 @@ ;;; Code: (require 'org-id) +(require 'message) (defgroup org-unique-id () "Create unique IDs for org headers." + :group 'org :prefix "org-unique-id" :link '(url-link :tag "Gitea" "https://labs.phundrak.com/phundrak/org-unique-id") :link '(url-link :tag "Github" "https://github.com/Phundrak/org-unique-id"))