Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions subshell-proc.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -45,6 +46,7 @@
)))))


;;;###autoload
(defun run-proc (command &optional buffer-name)
(interactive "MCommand to run: ")
(let ((command-list (split-string command)))
Expand Down