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

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

[nongnu] elpa/arduino-mode 8e82926 072/107: Use arduino-executable in co


From: ELPA Syncer
Subject: [nongnu] elpa/arduino-mode 8e82926 072/107: Use arduino-executable in commands instead
Date: Sun, 29 Aug 2021 10:58:19 -0400 (EDT)

branch: elpa/arduino-mode
commit 8e8292640018745c68a08c091aab908de9edcd5c
Author: concavegit <concavemail@gmail.com>
Commit: GitHub <noreply@github.com>

    Use arduino-executable in commands instead
---
 arduino-mode.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arduino-mode.el b/arduino-mode.el
index 59c7bbc..7503cfd 100644
--- a/arduino-mode.el
+++ b/arduino-mode.el
@@ -202,7 +202,7 @@ Each list item should be a regexp matching a single 
identifier."
   (let* ((proc-name "arduino-upload")
          (proc-buffer "*arduino-upload*")
          (proc (make-process
-                :command (list "arduino" "--upload" (buffer-file-name))
+                :command (list arduino-executable "--upload" 
(buffer-file-name))
                 :name proc-name
                 :buffer proc-buffer
                 :sentinel (lambda (proc event)
@@ -224,7 +224,7 @@ Each list item should be a regexp matching a single 
identifier."
   (let* ((proc-name "arduino-verify")
          (proc-buffer "*arduino-verify*")
          (proc (make-process
-                :command (list "arduino" "--verify" (buffer-file-name))
+                :command (list arduino-executable "--verify" 
(buffer-file-name))
                 :name proc-name
                 :buffer proc-buffer
                 :sentinel (lambda (proc event)
@@ -246,7 +246,7 @@ Each list item should be a regexp matching a single 
identifier."
   (let* ((proc-name "arduino-open")
          (proc-buffer "*arduino-open*")
          (proc (make-process
-                :command (list "arduino" (buffer-file-name))
+                :command (list arduino-executable (buffer-file-name))
                 :name proc-name
                 :buffer proc-buffer
                 :sentinel (lambda (proc event)



reply via email to

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