From: Tim Vaughan Date: Fri, 16 Aug 2019 14:12:54 +0000 (+0200) Subject: Fixed error in previous commit. X-Git-Tag: v1.4.7~1 X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=commitdiff_plain;h=bb6fa3a36f8c283d39829bb5adad997b9f9ab3d6 Fixed error in previous commit. --- diff --git a/elpher.el b/elpher.el index ea95aee..889c79b 100644 --- a/elpher.el +++ b/elpher.el @@ -306,7 +306,7 @@ unless PRESERVE-PARENT is non-nil." (let* ((address (elpher-node-address node)) (type (elpher-address-type address)) (type-record (alist-get type elpher-type-map))) - (if (listp type-record) + (if type-record (funcall (car type-record)) (elpher-visit-parent-node) (error "Unsupported gopher selector type '%c'" type)))))