From c6db01e4e1406aae31e51fcfc681b039c9af9ea1 Mon Sep 17 00:00:00 2001 From: rubikitch Date: Tue, 27 Oct 2015 04:24:52 +0900 Subject: [PATCH] Add autoload cookies --- subshell-proc.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subshell-proc.el b/subshell-proc.el index 7f6605c..eaa1ff5 100644 --- a/subshell-proc.el +++ b/subshell-proc.el @@ -19,6 +19,7 @@ (require 'cl) +;;;###autoload (defmacro defproc (fn-name command command-args &optional docstring) "Defines an interactive function which creates a comint subprocess using command" `(defun ,fn-name (&rest extra-args) @@ -45,6 +46,7 @@ ))))) +;;;###autoload (defun run-proc (command &optional buffer-name) (interactive "MCommand to run: ") (let ((command-list (split-string command)))