From b4fc468a644bdcbfcc371311c9984deb623bafff Mon Sep 17 00:00:00 2001
From: Tim Vaughan <plugd@thelambdalab.xyz>
Date: Thu, 4 Jun 2020 21:05:25 +0200
Subject: [PATCH] elpher-go now trims surrounding whitespace from input string.

---
 elpher.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/elpher.el b/elpher.el
index 1988656..1ea9e71 100644
--- a/elpher.el
+++ b/elpher.el
@@ -1538,11 +1538,12 @@ If ADDRESS is already bookmarked, update the label only."
   "Go to a particular gopher site HOST-OR-URL.
 When run interactively HOST-OR-URL is read from the minibuffer."
   (interactive "sGopher or Gemini URL: ")
-  (let ((page (elpher-make-page host-or-url
-                                (elpher-address-from-url host-or-url))))
+  (let* ((cleaned-host-or-url (string-trim host-or-url))
+         (address (elpher-address-from-url cleaned-host-or-url))
+         (page (elpher-make-page cleaned-host-or-url address))) 
     (switch-to-buffer "*elpher*")
     (elpher-visit-page page)
-    '()))
+    nil))
 
 (defun elpher-go-current ()
   "Go to a particular site read from the minibuffer, initialized with the current URL."
-- 
2.20.1