]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/formatting/formatting.factor
basis: ERROR: changes.
[factor.git] / basis / formatting / formatting.factor
index f36b04262240f45ac8b475d4ac079b1d30a86c02..2cc26266dcd1acdb01d7a7dce65e51106cec1496 100644 (file)
@@ -72,7 +72,7 @@ fmt-E     = digits "E"           => [[ first '[ _ format-scientific >upper ] ]]
 fmt-f     = digits "f"           => [[ first '[ _ format-decimal ] ]]
 fmt-x     = "x"                  => [[ [ >hex ] ]]
 fmt-X     = "X"                  => [[ [ >hex >upper ] ]]
-unknown   = (.)*                 => [[ unknown-printf-directive ]]
+unknown   = (.)*                 => [[ throw-unknown-printf-directive ]]
 
 strings_  = fmt-c|fmt-C|fmt-s|fmt-S|fmt-u
 strings   = pad width strings_   => [[ <reversed> compose-all ]]