From: Olof-Joachim Frahm Date: Fri, 17 May 2013 23:42:56 +0000 (+0200) Subject: Fix VARSYMP for empty symbol names. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=2690f3ebd2c792964877f6256d2239e108742b48;p=fiveam.git Fix VARSYMP for empty symbol names. --- diff --git a/src/utils.lisp b/src/utils.lisp index d23aff7..f81950f 100644 --- a/src/utils.lisp +++ b/src/utils.lisp @@ -92,7 +92,10 @@ ELSE will be executed." (acond2 ,@others))))))) (defun varsymp (x) - (and (symbolp x) (eq (aref (symbol-name x) 0) #\?))) + (and (symbolp x) + (let ((symbol-name (symbol-name x))) + (and (not (emptyp symbol-name)) + (char= (char symbol-name 0) #\?))))) (defun binding (x binds) (labels ((recbind (x binds)