[s-xml-devel] [PATCH] bugfix: s/*ignore-namespace*/*ignore-namespaces*/
Travis Cross
tc at travislists.com
Sun Oct 12 12:50:06 UTC 2008
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
More information about the s-xml-devel
mailing list