From 2b50046808e6a15b9e922ad25b45623de12ab83d Mon Sep 17 00:00:00 2001 From: Tim Vaughan Date: Sun, 28 Apr 2019 22:01:55 +0200 Subject: [PATCH] Fixed download getter bug. --- elpher.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elpher.el b/elpher.el index a55b659..69afb48 100644 --- a/elpher.el +++ b/elpher.el @@ -629,8 +629,8 @@ The result is stored as a string in the variable ‘elpher-selector-string’." (if button (let ((node (button-get button 'elpher-node))) (if node - (elpher-visit-node (button-get button 'elpher-node - #'elpher-get-node-download)) + (elpher-visit-node (button-get button 'elpher-node) + #'elpher-get-node-download) (message "Can only download gopher links, not general URLs."))) (message "No link selected.")))) -- 2.20.1