From a360c980c2fe6f092da9fc47b9b3373dcf7239de Mon Sep 17 00:00:00 2001 From: "Daniel C. Sobral" Date: Mon, 25 Sep 2000 11:18:02 +0000 Subject: [PATCH] What could possibly have possessed me to forget the "0 (arguments)" in two of the three boot words in the "boot" redefinition, I have no clue. Fix it. Noticed by: bp Noticed by: adrian --- sys/boot/forth/loader.4th | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/boot/forth/loader.4th b/sys/boot/forth/loader.4th index 9ef315e45a96..51bfc92f9adc 100644 --- a/sys/boot/forth/loader.4th +++ b/sys/boot/forth/loader.4th @@ -69,14 +69,14 @@ only forth also support-functions also builtins definitions load_kernel_and_modules ?dup if exit then then - 1 boot exit + 0 1 boot exit then else s" kernelname" getenv? 0= if ( no kernel has been loaded ) load_kernel_and_modules ?dup if exit then then - 1 boot exit + 0 1 boot exit then load_kernel_and_modules ?dup 0= if 0 1 boot then