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

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

[nongnu] elpa/zig-mode 5ca49c9e4e: Fix autoload cookies for reformatter


From: ELPA Syncer
Subject: [nongnu] elpa/zig-mode 5ca49c9e4e: Fix autoload cookies for reformatter commands
Date: Fri, 1 Mar 2024 10:00:53 -0500 (EST)

branch: elpa/zig-mode
commit 5ca49c9e4ee9b773f414c6259f1428a09c6129c2
Author: Steve Purcell <steve@sanityinc.com>
Commit: Joachim Schmidt <joachim.schmidt557@outlook.com>

    Fix autoload cookies for reformatter commands
    
    The 'current-file' was apparently copied intact from the reformatter 
examples, but it means the corresponding autoloads generated at package 
installation time don't really work.
---
 zig-mode.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/zig-mode.el b/zig-mode.el
index 533f589af2..d722ca95e0 100644
--- a/zig-mode.el
+++ b/zig-mode.el
@@ -127,9 +127,9 @@ If given a SOURCE, execute the CMD on it."
   :group 'zig-mode
   :lighter " ZigFmt")
 
-;;;###autoload (autoload 'zig-format-buffer "current-file" nil t)
-;;;###autoload (autoload 'zig-format-region "current-file" nil t)
-;;;###autoload (autoload 'zig-format-on-save-mode "current-file" nil t)
+;;;###autoload (autoload 'zig-format-buffer "zig-mode" nil t)
+;;;###autoload (autoload 'zig-format-region "zig-mode" nil t)
+;;;###autoload (autoload 'zig-format-on-save-mode "zig-mode" nil t)
 
 (defun zig-re-word (inner)
   "Construct a regular expression for the word INNER."



reply via email to

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