? cxml-asdf.diff ? typescript ? dom/dom-builder.fasl ? dom/dom-impl.fasl ? dom/dom-sax.fasl ? dom/package.fasl ? runes/characters.fasl ? runes/definline.fasl ? runes/encodings-data.fasl ? runes/encodings.fasl ? runes/package.fasl ? runes/syntax.fasl ? runes/xstream.fasl ? runes/ystream.fasl ? test/domtest.fasl ? test/xmlconf.fasl ? xml/catalog.fasl ? xml/characters.fasl ? xml/package.fasl ? xml/recoder.fasl ? xml/sax-handler.fasl ? xml/sax-proxy.fasl ? xml/space-normalizer.fasl ? xml/split-sequence.fasl ? xml/unparse.fasl ? xml/util.fasl ? xml/xml-name-rune-p.fasl ? xml/xml-parse.fasl ? xml/xmlns-normalizer.fasl ? xml/xmls-compat.fasl Index: cxml.asd =================================================================== RCS file: /project/cxml/cvsroot/cxml/cxml.asd,v retrieving revision 1.11 diff -u -r1.11 cxml.asd --- cxml.asd 24 Jan 2006 19:35:58 -0000 1.11 +++ cxml.asd 19 Apr 2006 05:20:40 -0000 @@ -44,8 +44,8 @@ (:file "definline") (:file runes :pathname - #-rune-is-character "runes" - #+rune-is-character "characters") + #-rune-is-character "runes.lisp" + #+rune-is-character "characters.lisp") #+rune-is-integer (:file "utf8") (:file "syntax") (:file "encodings") @@ -101,12 +101,12 @@ (make-pathname :name nil :type nil :defaults *load-truename*)) :components ((:file "package") - (:file rune-impl :pathname "dom-impl" :depends-on ("package")) - (:file rune-builder :pathname "dom-builder" :depends-on (rune-impl)) + (:file rune-impl :pathname "dom-impl.lisp" :depends-on ("package")) + (:file rune-builder :pathname "dom-builder.lisp" :depends-on (rune-impl)) #+rune-is-integer - (utf8dom-file utf8-impl :pathname "dom-impl" :depends-on ("package")) + (utf8dom-file utf8-impl :pathname "dom-impl.lisp" :depends-on ("package")) #+rune-is-integer - (utf8dom-file utf8-builder :pathname "dom-builder" :depends-on (utf8-impl)) + (utf8dom-file utf8-builder :pathname "dom-builder.lisp" :depends-on (utf8-impl)) (:file "dom-sax" :depends-on ("package"))) :depends-on (:cxml-xml))