]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/formatting/formatting.factor
core: cramp -> bound (was short)
[factor.git] / basis / formatting / formatting.factor
index a7fb08ef407ced70dc4f2cca36ace256a737cfad..5de21901b3795a93ad581788ac477529f49916e0 100644 (file)
@@ -106,7 +106,7 @@ pad       = pad-align pad-char pad-width => [[ <reversed> >quotation dup first 0
 sign_     = [+ ]                 => [[ '[ dup first CHAR: - = [ _ prefix ] unless ] ]]
 sign      = (sign_)?             => [[ [ ] or ]]
 
-width_    = "." ([0-9])*         => [[ second >digits '[ _ cramp head ] ]]
+width_    = "." ([0-9])*         => [[ second >digits '[ _ bound head ] ]]
 width     = (width_)?            => [[ [ ] or ]]
 
 digits_   = "." ([0-9])*         => [[ second >digits ]]