git: a8eb3b365eb6 - main - loader.4th dictthreshold too small

From: Simon J. Gerraty <sjg_at_FreeBSD.org>
Date: Mon, 18 Mar 2024 23:17:08 UTC
The branch main has been updated by sjg:

URL: https://cgit.FreeBSD.org/src/commit/?id=a8eb3b365eb63d2a569b166f2dfc982967d3a7fa

commit a8eb3b365eb63d2a569b166f2dfc982967d3a7fa
Author:     Simon J. Gerraty <sjg@FreeBSD.org>
AuthorDate: 2024-03-18 23:16:29 +0000
Commit:     Simon J. Gerraty <sjg@FreeBSD.org>
CommitDate: 2024-03-18 23:16:29 +0000

    loader.4th dictthreshold too small
    
    The dictthreshold in stand/forth/loader.4th is too small
    resulting in full dictionary.
    
    Reviewed by:    stevek, imp
    Sponsored by:   Juniper Networks, Inc.
    Differential Revision:  https://reviews.freebsd.org/D44414
---
 stand/forth/loader.4th | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/stand/forth/loader.4th b/stand/forth/loader.4th
index 574077ea5710..db31461f5454 100644
--- a/stand/forth/loader.4th
+++ b/stand/forth/loader.4th
@@ -61,8 +61,8 @@ s" arch-i386" environment? [if] [if]
 	[then]
 [then] [then]
 
-256 dictthreshold !  \ 256 cells minimum free space
-2048 dictincrease !  \ 2048 additional cells each time
+512 dictthreshold !  \ cells minimum free space
+2048 dictincrease !  \ additional cells each time
 
 include /boot/support.4th
 include /boot/color.4th