From 17c8b34289028a5c731d5e5221f2e0bb9edbe479 Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Fri, 7 Jan 2022 00:26:28 -0800 Subject: [PATCH] Shorten revision + drop second ok. This seems to somehow work around a see-all crash. Probably warrants further investigation. May have to do with large strings. --- ueforth/Makefile | 2 +- ueforth/common/boot.fs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ueforth/Makefile b/ueforth/Makefile index 8108d00..15c04a6 100644 --- a/ueforth/Makefile +++ b/ueforth/Makefile @@ -14,7 +14,7 @@ VERSION=7.0.6.10 STABLE_VERSION=7.0.5.4 -REVISION=$(shell git rev-parse HEAD) +REVISION=$(shell git rev-parse HEAD | head -c 20) REVSHORT=$(shell echo $(REVISION) | head -c 7) OUT = out diff --git a/ueforth/common/boot.fs b/ueforth/common/boot.fs index 960b576..240a91c 100644 --- a/ueforth/common/boot.fs +++ b/ueforth/common/boot.fs @@ -256,4 +256,3 @@ create input-buffer input-limit allot : quit begin ['] evaluate-buffer catch if 0 state ! sp0 sp! fp0 fp! rp0 rp! ." ERROR" cr then prompt refill drop again ; -: ok ." uEForth" cr prompt refill drop quit ;