diff --git a/books/bookvol5.pamphlet b/books/bookvol5.pamphlet
index 17dc2be..d1fc39f 100644
--- a/books/bookvol5.pamphlet
+++ b/books/bookvol5.pamphlet
@@ -38928,7 +38928,8 @@ for example:
(declare (ignore key))
(push value result))
*monitor-table*)
- (mapcar #'(lambda (x) (pprint x)) result)))
+ (mapcar #'(lambda (x) (pprint x))
+ (sort result #'string-lessp :key #'monitor-data-name))))
\end{chunk}
@@ -39088,7 +39089,7 @@ for example:
(if (and (monitor-data-monitorp value) (= (monitor-data-count value) 0))
(push key result)))
*monitor-table*)
- result))
+ (sort result #'string-lessp )))
\end{chunk}
@@ -39107,7 +39108,7 @@ for example:
(when delete (monitor-delete key))
(push key result)))
*monitor-table*)
- result))
+ (sort result #'string-lessp)))
\end{chunk}
diff --git a/changelog b/changelog
index 45e6c46..bdeaa26 100644
--- a/changelog
+++ b/changelog
@@ -1,3 +1,14 @@
+20110117 tpd src/axiom-website/patches.html 20110117.01.tpd.patch
+20110117 tpd books/bookvol5 sort monitor results
+20110117 tpd src/input/Makefile clean up failing tests
+20110117 tpd src/input/cmds.input clean up failing tests
+20110117 tpd src/input/complexfactor.input clean up failing tests
+20110117 tpd src/input/dop.input clean up failing tests
+20110117 tpd src/input/repa6.input clean up failing tests
+20110117 tpd src/input/unittest1.input clean up failing tests
+20110117 tpd src/input/unittest2.input clean up failing tests
+20110117 tpd src/interp/regress.lisp handle "ok" on --S
+20110117 tpd src/input/unit-i-funsel.input removed
20110115 tpd src/axiom-website/patches.html 20110115.01.tpd.patch
20110115 tpd books/bookvol10.4 fixup IntersectionDivisorPackage chunk
20110110 tpd src/axiom-website/patches.html 20110110.01.tpd.patch
diff --git a/src/axiom-website/patches.html b/src/axiom-website/patches.html
index a56d365..cdfb378 100644
--- a/src/axiom-website/patches.html
+++ b/src/axiom-website/patches.html
@@ -3345,5 +3345,7 @@ books/bookvol5 convert to lisp tangle
*.lisp.pamphlet moving to lisp tangle
20110115.01.tpd.patch
books/bookvol10.4 fixup IntersectionDivisorPackage chunk
+20110117.01.tpd.patch
+src/input/*.input clean up failing tests