diff --git a/books/bookvol10.3.pamphlet b/books/bookvol10.3.pamphlet
index 257be7e..3beba17 100644
--- a/books/bookvol10.3.pamphlet
+++ b/books/bookvol10.3.pamphlet
@@ -64439,7 +64439,7 @@ InputForm():
++ would transform s to f.
++ Error: if f is not the parsed form of a string.
parse : String -> %
- ++ parse is the inverse of unparse. It parses a string to InputForm.
+ ++ parse(s) is the inverse of unparse. It parses a string to InputForm.
declare : List % -> Symbol
++ declare(t) returns a name f such that f has been
++ declared to the interpreter to be of type t, but has
@@ -64507,8 +64507,9 @@ InputForm():
symbol? s => string symbol s
error "strsym: form is neither a string or symbol"
+ -- given a function this will attempt to recreate the input string
unparse x ==
- atom?(s:% := form2String(x)$Lisp) => strsym s
+ atom?(s:% := unparseInputForm(x)$Lisp) => strsym s
concat [strsym a for a in destruct s]
parse(s:String):% ==
diff --git a/books/bookvol10.4.pamphlet b/books/bookvol10.4.pamphlet
index 5d88cf9..81328bf 100644
--- a/books/bookvol10.4.pamphlet
+++ b/books/bookvol10.4.pamphlet
@@ -156533,11 +156533,11 @@ ViewDefaultsPackage():Exports == Implementation where
++ pointSizeDefault(i) sets the default size of the points in a 2D
++ viewport to i.
viewPosDefault : () -> L NNI
- ++ viewPosDefault() returns the default X and Y position of a
+ ++ viewPosDefault() returns the default x and y position of a
++ viewport window unless overriden explicityly, newly created
++ viewports will have this X and Y coordinate.
viewPosDefault : L NNI -> L NNI
- ++ viewPosDefault([x,y]) sets the default X and Y position of a
+ ++ viewPosDefault([x,y]) sets the default x and y position of a
++ viewport window unless overriden explicityly, newly created
++ viewports will have th X and Y coordinates x, y.
viewSizeDefault : () -> L PI
diff --git a/books/bookvol5.pamphlet b/books/bookvol5.pamphlet
index 71b5414..a54c06d 100644
--- a/books/bookvol5.pamphlet
+++ b/books/bookvol5.pamphlet
@@ -140,9 +140,9 @@ of effort. We would like to acknowledge and thank the following people:
"Tony Kennedy Ted Kosan Paul Kosinski"
"Klaus Kusche Bernhard Kutzler"
"Tim Lahey Larry Lambe Kaj Laurson"
-"George L. Legendre Franz Lehner Frederic Lehobey"
-"Michel Levaud Howard Levy Liu Xiaojun"
-"Rudiger Loos Michael Lucks Richard Luczak"
+"Franz Lehner Frederic Lehobey Michel Levaud"
+"Howard Levy Liu Xiaojun Rudiger Loos"
+"Michael Lucks Richard Luczak"
"Camm Maguire Francois Maltey Alasdair McAndrew"
"Bob McElrath Michael McGettrick Ian Meikle"
"David Mentre Victor S. Miller Gerard Milmeister"
@@ -38929,6 +38929,23 @@ but the Axiom semantics are not the same. Because Axiom was originally
written in Maclisp, then VMLisp, and then Common Lisp some of these old
semantics survive.
+\section{InputForm}
+\defun{unparseInputForm}{unparseInputForm}
+This fixes bug 7217. The default title generation is bogus.
+This is called from the unparse function in InputForm, bookvol10.3
+Given a form, $u$, we try to recover the input line that created it.
+\defsdollar{unparseInputForm}{InteractiveMode}
+\defsdollar{unparseInputForm}{formatSigAsTex}
+\begin{chunk}{defun unparseInputForm}
+(defun |unparseInputForm| (u)
+ (let (|$formatSigAsTeX| |$InteractiveMode|)
+ (declare (special |$formatSigAsTeX| |$InteractiveMode|))
+ (setq |$formatSigAsTeX| 1)
+ (setq |$InteractiveMode| nil)
+ (|form2StringLocal| u)))
+
+\end{chunk}
+
\section{Void}
\defun{voidValue}{voidValue}
\begin{chunk}{defun voidValue}
@@ -44959,6 +44976,7 @@ This needs to work off the internal exposure list, not the file.
\getchunk{defun unescapeStringsInForm}
\getchunk{defun unifyStruct}
\getchunk{defun unifyStructVar}
+\getchunk{defun unparseInputForm}
\getchunk{defun unsqueeze}
\getchunk{defun untrace}
\getchunk{defun untraceDomainConstructor}
diff --git a/buglist b/buglist
index a9aa39b..848a407 100644
--- a/buglist
+++ b/buglist
@@ -1,12 +1,40 @@
=========================================================================
-bug 7226:
+bug 7229:
todo 329:
wish 1011:
meh 5:
=========================================================================
+bug 7228: graphics crash running space3
+
+The src/input/space3.input causes an early exit
+
+=========================================================================
+
+bug 7227: Unexpected end of #
+
+This is caused by the removal of PAFFFF from the current system.
+
+=========================================================================
+
+bug 7226: )d op coerce regression caused by waldek format update.
+
+correct in git 95402C
+
+see src/input/dop test 69
+appears to be in ALGSC
+[4] Vector D2 -> AlgebraGivenByStructuralConstants(D2,D3,D4,D5)
+ from AlgebraGivenByStructuralConstants(D2,D3,D4,D5)
+
+=========================================================================
+
bug 7225: Lasagna Larga Doppia Riccia does not plot 0.0
See bookvol8.1, section Lasagna Larga Doppia Riccia
@@ -255,28 +283,6 @@ so I suspect the equations are wrong in some way. --tpd
=========================================================================
-bug 7217: bad title generated in Axiom 3D output
-
-given:
-
-cf(x,y) == 0.5
-draw(exp(cos(x-y)-sin(x*y))-2,x=-5..5,y=-5..5,_
- colorFunction==cf,style=="smooth")
-
-The title reads:
- DEXP((-DSIN(x*y))+DCOS(y-x))-2
-but should read:
- exp(cos(x-y)-sin(x*y))-2
-
-bug is probably here:
-src/interp/newfort.lisp.pamphlet:; op = '"cos" => '"DCOS"
-src/interp/newfort.lisp.pamphlet:; op = '"cosh" => '"DCOSH"
-src/interp/newfort.lisp.pamphlet: ((BOOT-EQUAL |op| "cos") "DCOS")
-src/interp/newfort.lisp.pamphlet: ((BOOT-EQUAL |op| "cosh") "DCOSH")
-
-
-=========================================================================
-
bug 7216:
t0207:= -a^3*(a+b*x)*Ei(log(c*(a+b*x)^n)/n)/((c*(a+b*x)^n)^(1/n))/b^4/n+3*a^2*(a+b*x)^2*Ei(2*log(c*(a+b*x)^n)/n)/((c*(a+b*x)^n)^(2/n))/b^4/n-3*a*(a+b*x)^3*Ei(3*log(c*(a+b*x)^n)/n)/((c*(a+b*x)^n)^(3/n))/b^4/n+(a+b*x)^4*Ei(4*log(c*(a+b*x)^n)/n)/((c*(a+b*x)^n)^(4/n))/b^4/n
@@ -24310,3 +24316,29 @@ endif
export COMPILER
+=========================================================================
+fixed 20120219.
+
+merged waldek's format.lisp with my format.lisp.
+Note that this breaks the printing of types.
+
+bug 7217: bad title generated in Axiom 3D output
+
+given:
+
+cf(x,y) == 0.5
+draw(exp(cos(x-y)-sin(x*y))-2,x=-5..5,y=-5..5,_
+ colorFunction==cf,style=="smooth")
+
+The title reads:
+ DEXP((-DSIN(x*y))+DCOS(y-x))-2
+but should read:
+ exp(cos(x-y)-sin(x*y))-2
+
+bug is probably here:
+src/interp/newfort.lisp.pamphlet:; op = '"cos" => '"DCOS"
+src/interp/newfort.lisp.pamphlet:; op = '"cosh" => '"DCOSH"
+src/interp/newfort.lisp.pamphlet: ((BOOT-EQUAL |op| "cos") "DCOS")
+src/interp/newfort.lisp.pamphlet: ((BOOT-EQUAL |op| "cosh") "DCOSH")
+
+
diff --git a/changelog b/changelog
index 54ea166..87a547e 100644
--- a/changelog
+++ b/changelog
@@ -1,3 +1,305 @@
+20120227 tpd src/axiom-website/patches.html 20120227.01.tpd.patch
+20120227 tpd src/interp/format.lisp fix bug 7217
+20120227 tpd src/input/zimmer.input fix bug 7217
+20120227 tpd src/input/zimmbron.input fix bug 7217
+20120227 tpd src/input/unittest4.input fix bug 7217
+20120227 tpd src/input/unittest1.input fix bug 7217
+20120227 tpd src/input/uniseg.input fix bug 7217
+20120227 tpd src/input/typetower.input fix bug 7217
+20120227 tpd src/input/tutchap1.input fix bug 7217
+20120227 tpd src/input/tsetcatvermeer.input fix bug 7217
+20120227 tpd src/input/tpiezas002.input fix bug 7217
+20120227 tpd src/input/tpiezas001.input fix bug 7217
+20120227 tpd src/input/testprob.input fix bug 7217
+20120227 tpd src/input/test.input fix bug 7217
+20120227 tpd src/input/telford.input fix bug 7217
+20120227 tpd src/input/tanhcoth.input fix bug 7217
+20120227 tpd src/input/tancot.input fix bug 7217
+20120227 tpd src/input/tanatan.input fix bug 7217
+20120227 tpd src/input/table.input fix bug 7217
+20120227 tpd src/input/t111293.input fix bug 7217
+20120227 tpd src/input/symbol.input fix bug 7217
+20120227 tpd src/input/summation.input fix bug 7217
+20120227 tpd src/input/strtbl.input fix bug 7217
+20120227 tpd src/input/string.input fix bug 7217
+20120227 tpd src/input/streams.input fix bug 7217
+20120227 tpd src/input/stream2.input fix bug 7217
+20120227 tpd src/input/stream.input fix bug 7217
+20120227 tpd src/input/stbl.input fix bug 7217
+20120227 tpd src/input/sregset.input fix bug 7217
+20120227 tpd src/input/sqrt3.input fix bug 7217
+20120227 tpd src/input/sqmatrix.input fix bug 7217
+20120227 tpd src/input/spline.input fix bug 7217
+20120227 tpd src/input/space3.input fix bug 7217
+20120227 tpd src/input/solvetra.input fix bug 7217
+20120227 tpd src/input/solveperf.input fix bug 7217
+20120227 tpd src/input/slowint.input fix bug 7217
+20120227 tpd src/input/skew.input fix bug 7217
+20120227 tpd src/input/sinhcosh.input fix bug 7217
+20120227 tpd src/input/sincosex.input fix bug 7217
+20120227 tpd src/input/sincos.input fix bug 7217
+20120227 tpd src/input/set.input fix bug 7217
+20120227 tpd src/input/sersolve.input fix bug 7217
+20120227 tpd src/input/series2.input fix bug 7217
+20120227 tpd src/input/series.input fix bug 7217
+20120227 tpd src/input/segbind.input fix bug 7217
+20120227 tpd src/input/seg.input fix bug 7217
+20120227 tpd src/input/seccsc.input fix bug 7217
+20120227 tpd src/input/sae.input fix bug 7217
+20120227 tpd src/input/ruleset.input fix bug 7217
+20120227 tpd src/input/rules.input fix bug 7217
+20120227 tpd src/input/rubey.input fix bug 7217
+20120227 tpd src/input/roots.input fix bug 7217
+20120227 tpd src/input/roman.input fix bug 7217
+20120227 tpd src/input/robidoux.input fix bug 7217
+20120227 tpd src/input/risch.input fix bug 7217
+20120227 tpd src/input/repa6.input fix bug 7217
+20120227 tpd src/input/regset.input fix bug 7217
+20120227 tpd src/input/reclos2.input fix bug 7217
+20120227 tpd src/input/reclos.input fix bug 7217
+20120227 tpd src/input/realclos.input fix bug 7217
+20120227 tpd src/input/radix.input fix bug 7217
+20120227 tpd src/input/radff.input fix bug 7217
+20120227 tpd src/input/r21bugsbig.input fix bug 7217
+20120227 tpd src/input/r21bugs.input fix bug 7217
+20120227 tpd src/input/r20bugs.input fix bug 7217
+20120227 tpd src/input/r20abugs.input fix bug 7217
+20120227 tpd src/input/quat1.input fix bug 7217
+20120227 tpd src/input/quat.input fix bug 7217
+20120227 tpd src/input/psgenfcn.input fix bug 7217
+20120227 tpd src/input/polycoer.input fix bug 7217
+20120227 tpd src/input/poly1.input fix bug 7217
+20120227 tpd src/input/poly.input fix bug 7217
+20120227 tpd src/input/pmint.input fix bug 7217
+20120227 tpd src/input/pfr1.input fix bug 7217
+20120227 tpd src/input/pfr.input fix bug 7217
+20120227 tpd src/input/pfaffian.input fix bug 7217
+20120227 tpd src/input/perman.input fix bug 7217
+20120227 tpd src/input/perm.input fix bug 7217
+20120227 tpd src/input/patmatch.input fix bug 7217
+20120227 tpd src/input/patch51.input fix bug 7217
+20120227 tpd src/input/pat.input fix bug 7217
+20120227 tpd src/input/pascal1.input fix bug 7217
+20120227 tpd src/input/pascal.input fix bug 7217
+20120227 tpd src/input/parabola.input fix bug 7217
+20120227 tpd src/input/page.input fix bug 7217
+20120227 tpd src/input/padic.input fix bug 7217
+20120227 tpd src/input/overload.input fix bug 7217
+20120227 tpd src/input/ovar.input fix bug 7217
+20120227 tpd src/input/operator.input fix bug 7217
+20120227 tpd src/input/opalg.input fix bug 7217
+20120227 tpd src/input/op1.input fix bug 7217
+20120227 tpd src/input/op.input fix bug 7217
+20120227 tpd src/input/odpol.input fix bug 7217
+20120227 tpd src/input/ode.input fix bug 7217
+20120227 tpd src/input/octonion.input fix bug 7217
+20120227 tpd src/input/oct.input fix bug 7217
+20120227 tpd src/input/numericgamma.input fix bug 7217
+20120227 tpd src/input/numbers.input fix bug 7217
+20120227 tpd src/input/nsfip.input fix bug 7217
+20120227 tpd src/input/nqip.input fix bug 7217
+20120227 tpd src/input/noptip.input fix bug 7217
+20120227 tpd src/input/noonburg.input fix bug 7217
+20120227 tpd src/input/nonlinhomodiffeq.input fix bug 7217
+20120227 tpd src/input/none.input fix bug 7217
+20120227 tpd src/input/nlode.input fix bug 7217
+20120227 tpd src/input/newtonlisp.input fix bug 7217
+20120227 tpd src/input/newton.input fix bug 7217
+20120227 tpd src/input/newlodo.input fix bug 7217
+20120227 tpd src/input/nepip.input fix bug 7217
+20120227 tpd src/input/ndftip.input fix bug 7217
+20120227 tpd src/input/multiple.input fix bug 7217
+20120227 tpd src/input/multfact.input fix bug 7217
+20120227 tpd src/input/mset2.input fix bug 7217
+20120227 tpd src/input/mset.input fix bug 7217
+20120227 tpd src/input/mpoly.input fix bug 7217
+20120227 tpd src/input/mkfunc.input fix bug 7217
+20120227 tpd src/input/mfinfact.input fix bug 7217
+20120227 tpd src/input/matrix1.input fix bug 7217
+20120227 tpd src/input/matrix.input fix bug 7217
+20120227 tpd src/input/mathml.input fix bug 7217
+20120227 tpd src/input/matbug.input fix bug 7217
+20120227 tpd src/input/mapleok.input fix bug 7217
+20120227 tpd src/input/manuel.input fix bug 7217
+20120227 tpd src/input/magma.input fix bug 7217
+20120227 tpd src/input/macbug.input fix bug 7217
+20120227 tpd src/input/lword.input fix bug 7217
+20120227 tpd src/input/lupfact.input fix bug 7217
+20120227 tpd src/input/lpoly.input fix bug 7217
+20120227 tpd src/input/log.input fix bug 7217
+20120227 tpd src/input/lodof.input fix bug 7217
+20120227 tpd src/input/lodo3.input fix bug 7217
+20120227 tpd src/input/lodo2.input fix bug 7217
+20120227 tpd src/input/lodo1.input fix bug 7217
+20120227 tpd src/input/lodo.input fix bug 7217
+20120227 tpd src/input/lodesys.input fix bug 7217
+20120227 tpd src/input/lode.input fix bug 7217
+20120227 tpd src/input/list.input fix bug 7217
+20120227 tpd src/input/liska.input fix bug 7217
+20120227 tpd src/input/lindep.input fix bug 7217
+20120227 tpd src/input/limit.input fix bug 7217
+20120227 tpd src/input/leg.input fix bug 7217
+20120227 tpd src/input/laplace.input fix bug 7217
+20120227 tpd src/input/kuipers.input fix bug 7217
+20120227 tpd src/input/kovacic.input fix bug 7217
+20120227 tpd src/input/knot2.input fix bug 7217
+20120227 tpd src/input/kernel.input fix bug 7217
+20120227 tpd src/input/isprime.input fix bug 7217
+20120227 tpd src/input/is.input fix bug 7217
+20120227 tpd src/input/ipftest.input fix bug 7217
+20120227 tpd src/input/intrf.input fix bug 7217
+20120227 tpd src/input/intmix2.input fix bug 7217
+20120227 tpd src/input/intmix.input fix bug 7217
+20120227 tpd src/input/intheory.input fix bug 7217
+20120227 tpd src/input/intg0.input fix bug 7217
+20120227 tpd src/input/intef2.input fix bug 7217
+20120227 tpd src/input/intef.input fix bug 7217
+20120227 tpd src/input/intdeq.input fix bug 7217
+20120227 tpd src/input/intbypart.input fix bug 7217
+20120227 tpd src/input/intaf.input fix bug 7217
+20120227 tpd src/input/int.input fix bug 7217
+20120227 tpd src/input/ifthenelse.input fix bug 7217
+20120227 tpd src/input/ifact.input fix bug 7217
+20120227 tpd src/input/ideal.input fix bug 7217
+20120227 tpd src/input/ico.input fix bug 7217
+20120227 tpd src/input/i2e.input fix bug 7217
+20120227 tpd src/input/hyperell.input fix bug 7217
+20120227 tpd src/input/hyperbolicrules.input fix bug 7217
+20120227 tpd src/input/hexadec.input fix bug 7217
+20120227 tpd src/input/heugcd.input fix bug 7217
+20120227 tpd src/input/herm.input fix bug 7217
+20120227 tpd src/input/help.input fix bug 7217
+20120227 tpd src/input/heat.input fix bug 7217
+20120227 tpd src/input/heap.input fix bug 7217
+20120227 tpd src/input/gstbl.input fix bug 7217
+20120227 tpd src/input/grpthry.input fix bug 7217
+20120227 tpd src/input/gonshor.input fix bug 7217
+20120227 tpd src/input/genups.input fix bug 7217
+20120227 tpd src/input/gbf.input fix bug 7217
+20120227 tpd src/input/gamma.input fix bug 7217
+20120227 tpd src/input/galois.input fix bug 7217
+20120227 tpd src/input/function.input fix bug 7217
+20120227 tpd src/input/free.input fix bug 7217
+20120227 tpd src/input/frame.input fix bug 7217
+20120227 tpd src/input/frac.input fix bug 7217
+20120227 tpd src/input/fr2.input fix bug 7217
+20120227 tpd src/input/fr1.input fix bug 7217
+20120227 tpd src/input/fr.input fix bug 7217
+20120227 tpd src/input/fparfrc.input fix bug 7217
+20120227 tpd src/input/fparfrac.input fix bug 7217
+20120227 tpd src/input/fns.input fix bug 7217
+20120227 tpd src/input/fname.input fix bug 7217
+20120227 tpd src/input/float1.input fix bug 7217
+20120227 tpd src/input/fixed.input fix bug 7217
+20120227 tpd src/input/finitegraph.input fix bug 7217
+20120227 tpd src/input/file.input fix bug 7217
+20120227 tpd src/input/ffx72.input fix bug 7217
+20120227 tpd src/input/ffieldbug.input fix bug 7217
+20120227 tpd src/input/fferr.input fix bug 7217
+20120227 tpd src/input/ffdemo.input fix bug 7217
+20120227 tpd src/input/farray.input fix bug 7217
+20120227 tpd src/input/exsum.input fix bug 7217
+20120227 tpd src/input/exseries.input fix bug 7217
+20120227 tpd src/input/exprpoly.input fix bug 7217
+20120227 tpd src/input/exprode.input fix bug 7217
+20120227 tpd src/input/expr1.input fix bug 7217
+20120227 tpd src/input/expr.input fix bug 7217
+20120227 tpd src/input/explim.input fix bug 7217
+20120227 tpd src/input/expexpan.input fix bug 7217
+20120227 tpd src/input/exp.input fix bug 7217
+20120227 tpd src/input/exlimit.input fix bug 7217
+20120227 tpd src/input/exlap.input fix bug 7217
+20120227 tpd src/input/exint.input fix bug 7217
+20120227 tpd src/input/exdiff.input fix bug 7217
+20120227 tpd src/input/exampleagcode.input fix bug 7217
+20120227 tpd src/input/evalex.input fix bug 7217
+20120227 tpd src/input/eval.input fix bug 7217
+20120227 tpd src/input/erf.input fix bug 7217
+20120227 tpd src/input/equation2.input fix bug 7217
+20120227 tpd src/input/equation.input fix bug 7217
+20120227 tpd src/input/eqtbl.input fix bug 7217
+20120227 tpd src/input/eq.input fix bug 7217
+20120227 tpd src/input/en.input fix bug 7217
+20120227 tpd src/input/elt.input fix bug 7217
+20120227 tpd src/input/elfuts.input fix bug 7217
+20120227 tpd src/input/elemnum.input fix bug 7217
+20120227 tpd src/input/elemfun.input fix bug 7217
+20120227 tpd src/input/eigen.input fix bug 7217
+20120227 tpd src/input/ei.input fix bug 7217
+20120227 tpd src/input/efi.input fix bug 7217
+20120227 tpd src/input/easter.input fix bug 7217
+20120227 tpd src/input/e1.input fix bug 7217
+20120227 tpd src/input/dpol.input fix bug 7217
+20120227 tpd src/input/dop.input fix bug 7217
+20120227 tpd src/input/donsimple.input fix bug 7217
+20120227 tpd src/input/dmp.input fix bug 7217
+20120227 tpd src/input/divisor.input fix bug 7217
+20120227 tpd src/input/distexpr.input fix bug 7217
+20120227 tpd src/input/dhtri.input fix bug 7217
+20120227 tpd src/input/dhmatrix.input fix bug 7217
+20120227 tpd src/input/dfloat.input fix bug 7217
+20120227 tpd src/input/derivefail.input fix bug 7217
+20120227 tpd src/input/derham.input fix bug 7217
+20120227 tpd src/input/defintrf.input fix bug 7217
+20120227 tpd src/input/defintef.input fix bug 7217
+20120227 tpd src/input/decimal.input fix bug 7217
+20120227 tpd src/input/davis.input fix bug 7217
+20120227 tpd src/input/davenport.input fix bug 7217
+20120227 tpd src/input/danzwill2.input fix bug 7217
+20120227 tpd src/input/danzwill.input fix bug 7217
+20120227 tpd src/input/cyfactor.input fix bug 7217
+20120227 tpd src/input/cycles1.input fix bug 7217
+20120227 tpd src/input/cycles.input fix bug 7217
+20120227 tpd src/input/curry.input fix bug 7217
+20120227 tpd src/input/curl.input fix bug 7217
+20120227 tpd src/input/contfrc.input fix bug 7217
+20120227 tpd src/input/contfrac.input fix bug 7217
+20120227 tpd src/input/conformal.input fix bug 7217
+20120227 tpd src/input/complexfactor.input fix bug 7217
+20120227 tpd src/input/complex.input fix bug 7217
+20120227 tpd src/input/collect.input fix bug 7217
+20120227 tpd src/input/coercels.input fix bug 7217
+20120227 tpd src/input/clifford.input fix bug 7217
+20120227 tpd src/input/clif.input fix bug 7217
+20120227 tpd src/input/classtalk.input fix bug 7217
+20120227 tpd src/input/chtheorem.input fix bug 7217
+20120227 tpd src/input/char.input fix bug 7217
+20120227 tpd src/input/ch.input fix bug 7217
+20120227 tpd src/input/carten.input fix bug 7217
+20120227 tpd src/input/cardinal.input fix bug 7217
+20120227 tpd src/input/card.input fix bug 7217
+20120227 tpd src/input/calculus2.input fix bug 7217
+20120227 tpd src/input/calculus.input fix bug 7217
+20120227 tpd src/input/calcprob.input fix bug 7217
+20120227 tpd src/input/bugs.input fix bug 7217
+20120227 tpd src/input/bug9057.input fix bug 7217
+20120227 tpd src/input/bug6357.input fix bug 7217
+20120227 tpd src/input/bug10312.input fix bug 7217
+20120227 tpd src/input/bug103.input fix bug 7217
+20120227 tpd src/input/bug101.input fix bug 7217
+20120227 tpd src/input/bug100.input fix bug 7217
+20120227 tpd src/input/bstree.input fix bug 7217
+20120227 tpd src/input/branchcut.input fix bug 7217
+20120227 tpd src/input/bop.input fix bug 7217
+20120227 tpd src/input/biquat.input fix bug 7217
+20120227 tpd src/input/binary.input fix bug 7217
+20120227 tpd src/input/besselk.input fix bug 7217
+20120227 tpd src/input/bbtree.input fix bug 7217
+20120227 tpd src/input/atansqrt.input fix bug 7217
+20120227 tpd src/input/asinhatanh.input fix bug 7217
+20120227 tpd src/input/asinatan.input fix bug 7217
+20120227 tpd src/input/array2.input fix bug 7217
+20120227 tpd src/input/array1.input fix bug 7217
+20120227 tpd src/input/arith.input fix bug 7217
+20120227 tpd src/input/antoine.input fix bug 7217
+20120227 tpd src/input/allfact.input fix bug 7217
+20120227 tpd src/input/algfacob.input fix bug 7217
+20120227 tpd src/input/algaggr.input fix bug 7217
+20120227 tpd src/input/ackermann.input fix bug 7217
+20120227 tpd buglist fix bug 7217
+20120227 tpd books/bookvol5 fix bug 7217
+20120227 tpd books/bookvol10.4 fix bug 7217
+20120227 tpd books/bookvol10.3 fix bug 7217
20120224 tpd src/axiom-website/patches.html 20120224.01.tpd.patch
20120224 tpd books/ps/v81icosahedron.eps Icosahedron
20120224 tpd books/ps/v81equation103.eps remove duplicate
diff --git a/src/axiom-website/patches.html b/src/axiom-website/patches.html
index bc7470c..f8a4946 100644
--- a/src/axiom-website/patches.html
+++ b/src/axiom-website/patches.html
@@ -3826,5 +3826,7 @@ buglist 7225: Lasagna Larga Doppia Riccia does not plot 0.0
books/bookvol8.1 add Klein bagel example
20120224.01.tpd.patch
books/bookvol8.1 add Icosahedron, remove v18equation103
+20120227.01.tpd.patch
+buglist fix bug 7217