From 416acd4a35c4a18c9dc78c235ade39e4056a1db3 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sat, 4 Nov 2023 15:39:15 +0100 Subject: [PATCH] Reformat code --- bundle/bundle--linux.el | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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."