<li>Serialization no longer defaults to canonical form.</li>

This commit is contained in:
dlichteblau
2007-06-16 09:42:06 +00:00
parent ccbfd1e747
commit 5c597c9bce
2 changed files with 6 additions and 1 deletions

View File

@ -57,6 +57,11 @@
<a name="changes"/> <a name="changes"/>
<h3>Recent Changes</h3> <h3>Recent Changes</h3>
<p class="nomargin"><tt>rel-2007-mm-dd</tt></p>
<ul class="nomargin">
<li>Serialization no longer defaults to canonical form.</li>
<li>Fixed octet array argument to make-source.</li>
</ul>
<p class="nomargin"><tt>rel-2007-05-26</tt></p> <p class="nomargin"><tt>rel-2007-05-26</tt></p>
<ul class="nomargin"> <ul class="nomargin">
<li><b>cxml.asd has been split up into <tt>cxml.asd</tt> for the <li><b>cxml.asd has been split up into <tt>cxml.asd</tt> for the

View File

@ -72,7 +72,7 @@
(defclass sink () (defclass sink ()
((ystream :initarg :ystream :accessor sink-ystream) ((ystream :initarg :ystream :accessor sink-ystream)
(width :initform 79 :initarg :width :accessor width) (width :initform 79 :initarg :width :accessor width)
(canonical :initform t :initarg :canonical :accessor canonical) (canonical :initform nil :initarg :canonical :accessor canonical)
(indentation :initform nil :initarg :indentation :accessor indentation) (indentation :initform nil :initarg :indentation :accessor indentation)
(current-indentation :initform 0 :accessor current-indentation) (current-indentation :initform 0 :accessor current-indentation)
(notations :initform (make-buffer :element-type t) :accessor notations) (notations :initform (make-buffer :element-type t) :accessor notations)