summaryrefslogtreecommitdiff
path: root/sys/boot/common/interp_forth.c
diff options
context:
space:
mode:
authorDaniel C. Sobral <dcs@FreeBSD.org>2000-06-16 05:04:05 +0000
committerDaniel C. Sobral <dcs@FreeBSD.org>2000-06-16 05:04:05 +0000
commitf102f87438e2c96bf1be010338059dc95601123c (patch)
tree5ec6146766cda5fe623dbf01744052e856793637 /sys/boot/common/interp_forth.c
parent625cc848089dde7df4045ed33924674433711986 (diff)
Notes
Diffstat (limited to 'sys/boot/common/interp_forth.c')
-rw-r--r--sys/boot/common/interp_forth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/common/interp_forth.c b/sys/boot/common/interp_forth.c
index 1cf60c437960..251caf1e8f03 100644
--- a/sys/boot/common/interp_forth.c
+++ b/sys/boot/common/interp_forth.c
@@ -244,10 +244,10 @@ bf_init(void)
/* make all commands appear as Forth words */
SET_FOREACH(cmdp, Xcommand_set) {
ficlBuild((*cmdp)->c_name, bf_command, FW_DEFAULT);
- ficlExec(bf_vm, "also forth definitions");
+ ficlExec(bf_vm, "forth definitions builtins");
sprintf(create_buf, "builtin: %s", (*cmdp)->c_name);
ficlExec(bf_vm, create_buf);
- ficlExec(bf_vm, "previous definitions");
+ ficlExec(bf_vm, "builtins definitions");
}
ficlExec(bf_vm, "only forth definitions");