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

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

[nongnu] elpa/forth-mode 7c75c452e9 022/153: Correct autoload cookie for


From: ELPA Syncer
Subject: [nongnu] elpa/forth-mode 7c75c452e9 022/153: Correct autoload cookie format
Date: Sat, 29 Jan 2022 08:02:13 -0500 (EST)

branch: elpa/forth-mode
commit 7c75c452e9fa4a420c34218e2539435ed074be5e
Author: Syohei YOSHIDA <shohei.yoshida@dena.com>
Commit: Syohei YOSHIDA <shohei.yoshida@dena.com>

    Correct autoload cookie format
    
    A space is not necessary.
---
 forth-interaction-mode.el | 6 +++---
 forth-mode.el             | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/forth-interaction-mode.el b/forth-interaction-mode.el
index 80ceb40850..0246cfd68b 100644
--- a/forth-interaction-mode.el
+++ b/forth-interaction-mode.el
@@ -36,7 +36,7 @@
 
 (defvar forth-executable "gforth")
 
-;;;### autoload
+;;;###autoload
 (defun forth ()
   "Start an interactive forth session."
   (interactive)
@@ -51,7 +51,7 @@
                'forth-interaction-preoutput-filter nil t)
       (setq forth-interaction-buffer buffer))))
       
-;;;### autoload
+;;;###autoload
 (defun forth-restart ()
   (interactive)
   (forth-kill)
@@ -62,7 +62,7 @@
     (forth))
   (get-buffer-process forth-interaction-buffer))
 
-;;;### autoload
+;;;###autoload
 (defun forth-interaction-send (string &optional callback)
   (let ((proc (ensure-forth)))
     (setq forth-interaction-callback callback)
diff --git a/forth-mode.el b/forth-mode.el
index 80a17e1da0..b8b6d52fa6 100644
--- a/forth-mode.el
+++ b/forth-mode.el
@@ -69,7 +69,7 @@
 (unless (fboundp 'prog-mode)
   (defalias 'prog-mode 'fundamental-mode))
 
-;;;### autoload
+;;;###autoload
 (define-derived-mode forth-mode prog-mode "Forth"
                     "Major mode for editing Forth files."
                     :syntax-table forth-mode-syntax-table



reply via email to

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