From: Tim Vaughan Date: Sun, 28 Apr 2019 20:01:55 +0000 (+0200) Subject: Fixed download getter bug. X-Git-Tag: v1.0.0~21 X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=commitdiff_plain;h=2b50046808e6a15b9e922ad25b45623de12ab83d Fixed download getter bug. --- 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."))))