emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/org-superstar 9ac640d620 154/162: Avoid positional args in


From: Stefan Kangas
Subject: [nongnu] elpa/org-superstar 9ac640d620 154/162: Avoid positional args in define-minor-mode
Date: Fri, 31 Dec 2021 19:35:39 -0500 (EST)

branch: elpa/org-superstar
commit 9ac640d620a82633db1ac3759920b60a993748cf
Author: Brian Leung <leungbk@mailfence.com>
Commit: Brian Leung <leungbk@mailfence.com>

    Avoid positional args in define-minor-mode
    
    The latest Emacs 28 warns against this when byte-compiling.
---
 org-superstar.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/org-superstar.el b/org-superstar.el
index e52dd33e0e..711cc3a48c 100644
--- a/org-superstar.el
+++ b/org-superstar.el
@@ -870,7 +870,8 @@ cleanup routines."
 ;;;###autoload
 (define-minor-mode org-superstar-mode
   "Use UTF8 bullets for headlines and plain lists."
-  nil nil nil
+  :lighter nil
+  :keymap nil
   :group 'org-superstar
   :require 'org
   (cond



reply via email to

[Prev in Thread] Current Thread [Next in Thread]