diff --git a/core/math/parser/parser-docs.factor b/core/math/parser/parser-docs.factor
index b0d52ef2ef..1d2a24057c 100644
--- a/core/math/parser/parser-docs.factor
+++ b/core/math/parser/parser-docs.factor
@@ -25,14 +25,10 @@ $nl
ABOUT: "number-strings"
HELP: digits>integer
-{ $values { "radix" "an integer between 2 and 36" } { "seq" "a sequence of integers" } { "n" integer } }
+{ $values { "seq" "a sequence of integers" } { "radix" "an integer between 2 and 36" } { "n" integer } }
{ $description "Converts a sequence of digits (with most significant digit first) into an integer." }
{ $notes "This is one of the factors of " { $link string>number } "." } ;
-HELP: valid-digits?
-{ $values { "radix" "an integer between 2 and 36" } { "seq" "a sequence of integers" } { "?" "a boolean" } }
-{ $description "Tests if this sequence of integers represents a valid integer in the given radix." } ;
-
HELP: >digit
{ $values { "n" "an integer between 0 and 35" } { "ch" "a character" } }
{ $description "Outputs a character representation of a digit." }
@@ -43,11 +39,6 @@ HELP: digit>
{ $description "Converts a character representation of a digit to an integer." }
{ $notes "This is one of the factors of " { $link string>number } "." } ;
-HELP: string>integer
-{ $values { "str" string } { "radix" "an integer between 2 and 36" } { "n/f" "an integer or " { $link f } } }
-{ $description "Creates an integer from a string representation." }
-{ $notes "The " { $link base> } " word is more general." } ;
-
HELP: base>
{ $values { "str" string } { "radix" "an integer between 2 and 36" } { "n/f" "a real number or " { $link f } } }
{ $description "Creates a real number from a string representation with the given radix. The radix is ignored for floating point literals; they are always taken to be in base 10."
diff --git a/unmaintained/furnace-pastebin/annotate-paste.furnace b/unmaintained/furnace-pastebin/annotate-paste.furnace
deleted file mode 100644
index 24f0d4ea94..0000000000
--- a/unmaintained/furnace-pastebin/annotate-paste.furnace
+++ /dev/null
@@ -1,28 +0,0 @@
-<% USING: namespaces math io ; %>
-
-