diff options
Diffstat (limited to 'Src/params.c')
-rw-r--r-- | Src/params.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/params.c b/Src/params.c index bf2b29ca1..fa475fdbc 100644 --- a/Src/params.c +++ b/Src/params.c @@ -2910,8 +2910,8 @@ histsizegetfn(Param pm) void histsizesetfn(Param pm, zlong v) { - if ((histsiz = v) <= 2) - histsiz = 2; + if ((histsiz = v) < 1) + histsiz = 1; resizehistents(); } |