From 34ea44a3aa5224805edc153544bf7c8562f350f1 Mon Sep 17 00:00:00 2001 From: mgcaret Date: Mon, 6 Jan 2020 09:56:35 -0800 Subject: [PATCH] clarifications in comments --- asm/forth-dictionary.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asm/forth-dictionary.s b/asm/forth-dictionary.s index 8a4c3b2..e0613f2 100644 --- a/asm/forth-dictionary.s +++ b/asm/forth-dictionary.s @@ -5486,7 +5486,7 @@ done: .dword RtoP ; ( -- c-addr3' ) ( R: c-addr3' -- ) EXIT eword -; H: ( -- ) Compile code to compile the immediately following xt. Better to use POSTPONE. +; H: ( -- ) Compile code to compile the immediately following word. Better to use POSTPONE. ; BTW don't use with numbers. dword COMPILE,"COMPILE",F_IMMED|F_CONLY ENTER @@ -5495,7 +5495,7 @@ dword COMPILE,"COMPILE",F_IMMED|F_CONLY EXIT eword -; H: ( "name"<> -- ) Compile name later. Better to use postpone. +; H: ( "name"<> -- ) Compile name now. Better to use POSTPONE. dword ICOMPILE,"[COMPILE]",F_IMMED ENTER .dword PARSEFIND