about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Src/params.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/params.c b/Src/params.c
index 8ead6d69d..ef6016294 100644
--- a/Src/params.c
+++ b/Src/params.c
@@ -2770,8 +2770,8 @@ histsizegetfn(Param pm)
 void
 histsizesetfn(Param pm, zlong v)
 {
-    if ((histsiz = v) <= 2)
-	histsiz = 2;
+    if ((histsiz = v) < 1)
+	histsiz = 1;
     resizehistents();
 }