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

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

[elpa] externals/ssh-deploy e56b316 113/173: Fixed syntax error in (cond


From: Stefan Monnier
Subject: [elpa] externals/ssh-deploy e56b316 113/173: Fixed syntax error in (cond) expression
Date: Sat, 20 Oct 2018 10:36:40 -0400 (EDT)

branch: externals/ssh-deploy
commit e56b316dd72ad24046cd4b8016be3491fb46bd0e
Author: Christian Johansson <address@hidden>
Commit: Christian Johansson <address@hidden>

    Fixed syntax error in (cond) expression
---
 ssh-deploy.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ssh-deploy.el b/ssh-deploy.el
index 8f286fd..0457cd2 100644
--- a/ssh-deploy.el
+++ b/ssh-deploy.el
@@ -633,7 +633,7 @@
             (list ,path 1)))
        (lambda(response)
          (cond ((= 0 (nth 1 response)) (message "Deleted '%s'. 
(asynchronously)" (nth 0 response)))
-               ((t (display-warning "ssh-deploy" (format "Did not find '%s'. 
(asynchronously)" (nth 0 response)) :warning))))))
+               (t (display-warning "ssh-deploy" (format "Did not find '%s'. 
(asynchronously)" (nth 0 response)) :warning)))))
     (if (file-exists-p path)
         (let ((file-or-directory (file-regular-p path)))
           (progn



reply via email to

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