Fix a comparison issue - clic - Clic is an command line interactive client for gopher written in Common LISP HTML git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/clic/ DIR Log DIR Files DIR Refs DIR Tags DIR README DIR LICENSE --- DIR commit c5ad93bd84b0e56df44e063c6871c587e98ef9c0 DIR parent 7177f07c0261e877fcc1d027b7c9d0b5581142cc HTML Author: Solene Rapenne <solene@perso.pw> Date: Wed, 3 Jan 2018 14:39:48 +0100 Fix a comparison issue Diffstat: M clic.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/clic.lisp b/clic.lisp @@ -376,7 +376,7 @@ (defun parse-url(url) "parse a gopher url and return a location" - (let ((url (if (= 0 (search "gopher://" url)) + (let ((url (if (search "gopher://" url) (subseq url 9) url)))