Merge pull request #9 from nineties/fix_need_defined

Fix message of need-defined
This commit is contained in:
Koichi NAKAMURA 2021-05-05 22:28:26 +09:00 committed by GitHub
commit 7ad0d0f17e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 <target> option." cr
." Implementation of " type ." for " runtime type ." is missing." cr
." Please implement it." cr
UNDEFINED-WORD-ERROR throw
then drop
;