From 35847cb2de0deed77436c8b5773030b30decbff2 Mon Sep 17 00:00:00 2001 From: dlichteblau Date: Sun, 21 Oct 2007 14:43:20 +0000 Subject: [PATCH] Another HAX fix: * xml/sax-handler.lisp: Signal a warning in deprecated method,y not an error. --- xml/sax-handler.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml/sax-handler.lisp b/xml/sax-handler.lisp index 9e71e1a..b66aa74 100644 --- a/xml/sax-handler.lisp +++ b/xml/sax-handler.lisp @@ -416,7 +416,7 @@ Setting this variable has no effect unless both (setf (slot-value handler 'sax-parser) sax-parser)) (:method ((handler t) sax-parser) (declare (ignore sax-parser)) - (error "deprecated sax default method used by a handler ~ + (warn "deprecated sax default method used by a handler ~ that is not a subclass of sax:abstract-handler ~ or hax:abstract-handler") nil)