aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorKristofer Peterson <kris@tranception.com>2026-03-24 14:56:48 +0000
committerAlexander Ziaee <ziaee@FreeBSD.org>2026-04-13 23:06:41 +0000
commit81b2055c49dec8884d7bb23503f1dfeac37ac95d (patch)
treef673585dfad3085139e59eddf53885957c7f2068 /bin
parenta3c457398f269c913aaa4d9dedcc72a70c02e845 (diff)
Diffstat (limited to 'bin')
-rw-r--r--bin/sh/histedit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c
index c109cf20613d..a9a4837a92e5 100644
--- a/bin/sh/histedit.c
+++ b/bin/sh/histedit.c
@@ -233,7 +233,7 @@ sethistsize(const char *hs)
if (hist != NULL) {
if (hs == NULL || !is_number(hs))
- histsize = 100;
+ histsize = 128;
else
histsize = atoi(hs);
history(hist, &he, H_SETSIZE, histsize);