diff --git a/bundle/bundle--linux.el b/bundle/bundle--linux.el index f8713658..df24b1c8 100644 --- a/bundle/bundle--linux.el +++ b/bundle/bundle--linux.el @@ -249,11 +249,10 @@ an ALIAS and SERVICE as arguments and call (sentinel (lambda (process signal) (when (memq (process-status process) '(exit signal)) (message "Process: %s %s" process signal))))) - (make-process - :name process-name - :buffer buffer - :command `("ssh" ,host "sudo" "tail -f" ,filepath) - :sentinel sentinel))) + (make-process :name process-name + :buffer buffer + :command `("ssh" ,host "sudo" "tail -f" ,filepath) + :sentinel sentinel))) (defmacro mk/define-remote-log-function (alias service &optional filename) "Define a function to asynchronously tail a remote log file."