| Fix a comparison issue - clic - Clic is an command line interactive client for … | |
| git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65… | |
| Log | |
| Files | |
| Refs | |
| Tags | |
| README | |
| LICENSE | |
| --- | |
| commit c5ad93bd84b0e56df44e063c6871c587e98ef9c0 | |
| parent 7177f07c0261e877fcc1d027b7c9d0b5581142cc | |
| Author: Solene Rapenne <[email protected]> | |
| 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(-) | |
| --- | |
| 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))) | |