From f8c80d433d78aa6df55309a6c04a80d3b7f1c679 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Thu, 28 Dec 2006 21:12:54 +0000 Subject: [PATCH] r11409: fix error message --- parse-macros.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse-macros.lisp b/parse-macros.lisp index a2af75e..2a7469b 100644 --- a/parse-macros.lisp +++ b/parse-macros.lisp @@ -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) -- 2.34.1