diff --git a/doc/index.xml b/doc/index.xml
index 35e0f61..02f8236 100644
--- a/doc/index.xml
+++ b/doc/index.xml
@@ -57,6 +57,11 @@
Recent Changes
+ rel-2007-mm-dd
+
+ - Serialization no longer defaults to canonical form.
+ - Fixed octet array argument to make-source.
+
rel-2007-05-26
- cxml.asd has been split up into cxml.asd for the
diff --git a/xml/unparse.lisp b/xml/unparse.lisp
index f8194ed..dbc47fd 100644
--- a/xml/unparse.lisp
+++ b/xml/unparse.lisp
@@ -72,7 +72,7 @@
(defclass sink ()
((ystream :initarg :ystream :accessor sink-ystream)
(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)
(current-indentation :initform 0 :accessor current-indentation)
(notations :initform (make-buffer :element-type t) :accessor notations)