From cf345df3f561adfe207c84b1671cfbb9c1178ce7 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Wed, 25 Jun 2008 03:53:36 -0500 Subject: [PATCH] Bootstrap fix --- core/lexer/lexer-docs.factor | 5 ----- extra/help/markup/markup.factor | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/lexer/lexer-docs.factor b/core/lexer/lexer-docs.factor index b61fc82a25..a7dcb161e5 100644 --- a/core/lexer/lexer-docs.factor +++ b/core/lexer/lexer-docs.factor @@ -2,11 +2,6 @@ IN: lexer USING: help.markup help.syntax kernel math sequences strings words quotations ; -: $parsing-note ( children -- ) - drop - "This word should only be called from parsing words." - $notes ; - HELP: lexer { $var-description "Stores the current " { $link lexer } " instance." } { $class-description "An object for tokenizing parser input. It has the following slots:" diff --git a/extra/help/markup/markup.factor b/extra/help/markup/markup.factor index 32e4084150..150a66ec92 100755 --- a/extra/help/markup/markup.factor +++ b/extra/help/markup/markup.factor @@ -290,6 +290,11 @@ M: string ($instance) : $values-x/y ( children -- ) drop { { "x" number } { "y" number } } $values ; +: $parsing-note ( children -- ) + drop + "This word should only be called from parsing words." + $notes ; + : $io-error ( children -- ) drop "Throws an error if the I/O operation fails." $errors ;