#80: (format t "~ve" 21 5d-324) generates an error --------------------+------------------------------------------------------- Reporter: rtoy | Owner: somebody Type: defect | Status: new Priority: major | Milestone: Component: Core | Version: 2013-03-a Keywords: | --------------------+------------------------------------------------------- {{{ (format t "~ve" 21 5d-324) }}} generates an error indexing into {{{*powers-of-ten*}}}. We can increase the size of {{{*powers-of-ten*}}} a bit, but there will always be cases where the table is too small. This can happen if {{{21}}} above is changed to a much larger number.
#80: (format t "~ve" 21 5d-324) generates an error ---------------------+------------------------------------------------------ Reporter: rtoy | Owner: somebody Type: defect | Status: closed Priority: major | Milestone: Component: Core | Version: 2013-03-a Resolution: fixed | Keywords: ---------------------+------------------------------------------------------ Changes (by toy.raymond@…):
* status: new => closed * resolution: => fixed
Comment:
commit b82f05d5f2fe59b52977bbf0a2d25578caded0de Author: Raymond Toy toy.raymond@gmail.com Date: Sun Apr 7 11:03:06 2013 -0700
Fix ticket:80
* Increase the size of *powers-of-ten* a bit. * In expt-ten, handle the case where the exponent exceeds the size of the *powers-of-ten* array.