From a5e38663e26a9f65be8c6f2e702d964e625a67a4 Mon Sep 17 00:00:00 2001 From: Koichi Nakamura Date: Wed, 5 May 2021 21:47:58 +0900 Subject: [PATCH] Fix message of need-defined --- bootstrap.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.fs b/bootstrap.fs index 018b863..92d5133 100644 --- a/bootstrap.fs +++ b/bootstrap.fs @@ -2435,8 +2435,8 @@ BLOCK-SIZE remaining-size ! : need-defined ( "name" -- ) word throw dup find unless - ." Implementation of " type ." is missing." cr - ." Please implement it or use --gen option." cr + ." Implementation of " type ." for " runtime type ." is missing." cr + ." Please implement it." cr UNDEFINED-WORD-ERROR throw then drop ;