[cxml-cvs] CVS update: cxml/dom/dom-impl.lisp
David Lichteblau
dlichteblau at common-lisp.net
Sun Dec 4 23:26:48 UTC 2005
Update of /project/cxml/cvsroot/cxml/dom
In directory common-lisp.net:/tmp/cvs-serv13355/dom
Modified Files:
dom-impl.lisp
Log Message:
nicht spezifizierte importe sollen NOT_SUPPORTED_ERR geben
Date: Mon Dec 5 00:26:48 2005
Author: dlichteblau
Index: cxml/dom/dom-impl.lisp
diff -u cxml/dom/dom-impl.lisp:1.17 cxml/dom/dom-impl.lisp:1.18
--- cxml/dom/dom-impl.lisp:1.17 Mon Dec 5 00:23:25 2005
+++ cxml/dom/dom-impl.lisp Mon Dec 5 00:26:47 2005
@@ -1248,6 +1248,10 @@
(dom:append-child result (dom:import-node document child t))))
result))
+(defmethod dom:import-node ((document document) (node t) deep)
+ (declare (ignore deep))
+ (dom-error :NOT_SUPPORTED_ERR "not implemented"))
+
(defmethod dom:import-node ((document document) (node attribute) deep)
(declare (ignore deep))
(import-node-internal 'attribute
More information about the Cxml-cvs
mailing list