branch: externals/ssh-deploy
commit dc8882d1806c0fdd635bc625b109179dfa3c929c
Merge: 95fb076c9b fdfad2de55
Author: Christian Johansson <cjohans...@users.noreply.github.com>
Commit: GitHub <nore...@github.com>

    Merge pull request #76 from alanpearce/patch-1
    
    Fix invalid bind in ssh-deploy-prefix-map
---
 ssh-deploy.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ssh-deploy.el b/ssh-deploy.el
index 917d7f1504..d21ea9fc86 100644
--- a/ssh-deploy.el
+++ b/ssh-deploy.el
@@ -1455,7 +1455,7 @@ if it is configured for deployment."
 
 (defvar ssh-deploy-prefix-map
   (let ((map (make-sparse-keymap)))
-    (define-key map "f" 'ssh-deploy-upload-handler-force)
+    (define-key map "f" 'ssh-deploy-upload-handler-forced)
     (define-key map "u" 'ssh-deploy-upload-handler)
     (define-key map "D" 'ssh-deploy-delete-handler)
     (define-key map "d" 'ssh-deploy-download-handler)

Reply via email to