From tc at travislists.com Sun Oct 12 12:50:06 2008 From: tc at travislists.com (Travis Cross) Date: Sun, 12 Oct 2008 12:50:06 +0000 Subject: [s-xml-devel] [PATCH] bugfix: s/*ignore-namespace*/*ignore-namespaces*/ Message-ID: <48F1F27E.1030709@travislists.com> Greetings, The following incorrect declaration results in an unnecessary warning when freshly compiled. This patch corrects the issue. diff --git a/src/xml.lisp b/src/xml.lisp index f59eec0..cfa2f31 100644 --- a/src/xml.lisp +++ b/src/xml.lisp @@ -56,7 +56,7 @@ (defun parse-attribute-value (name string) "Default parser for the attribute value" (declare (ignore name) - (special *ignore-namespace*)) + (special *ignore-namespaces*)) (if *ignore-namespaces* (copy-seq string) string)) Cheers, -- Travis