r11409: fix error message
authorKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 28 Dec 2006 21:12:54 +0000 (21:12 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 28 Dec 2006 21:12:54 +0000 (21:12 +0000)
parse-macros.lisp

index a2af75ef7a7bf38a66c015c315825d86b2cc3974..2a7469b75b58ed22b3dc9f3a8b5a3275bd2c358d 100644 (file)
@@ -65,7 +65,7 @@
     `(let ((,eof (gensym "EOFSYM-"))
           (,files (source-files ,path)))
       (unless ,files
-        (error "Can't find file files for ~A~%" ,path))
+        (error "Can't find files for ~A~%" (namestring ,path)))
       (with-open-file (,ustream (first ,files) :direction :input
                        #+(and clisp unicode) :external-format
                        #+(and clisp unicode) charset:utf-8)