Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Aug 2015 16:25:27 GMT
From:      clord@FreeBSD.org
To:        svn-soc-all@FreeBSD.org
Subject:   socsvn commit: r290033 - soc2015/clord/head/sys/contrib/ficl
Message-ID:  <201508211625.t7LGPRmG057058@socsvn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: clord
Date: Fri Aug 21 16:25:26 2015
New Revision: 290033
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=290033

Log:
  Add call to ficlDictionaryCheckThreshold, as was done in ficl 3.
  

Modified:
  soc2015/clord/head/sys/contrib/ficl/primitives.c

Modified: soc2015/clord/head/sys/contrib/ficl/primitives.c
==============================================================================
--- soc2015/clord/head/sys/contrib/ficl/primitives.c	Fri Aug 21 16:24:17 2015	(r290032)
+++ soc2015/clord/head/sys/contrib/ficl/primitives.c	Fri Aug 21 16:25:26 2015	(r290033)
@@ -1161,6 +1161,8 @@
     ficlDictionary *dictionary = ficlVmGetDictionary(vm);
     ficlString name = ficlVmGetWord(vm);
 
+    ficlDictionaryCheckThreshold(dictionary);
+
     ficlDictionaryAppendWord(dictionary, name, (ficlPrimitive)ficlInstructionVariableParen, FICL_WORD_DEFAULT);
     ficlVmDictionaryAllotCells(vm, dictionary, 1);
     return;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508211625.t7LGPRmG057058>