aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-11-13 16:17:41 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-11-13 16:17:41 +1300
commit9c0e7d95be170361cf669664f19efa42d687d9bb (patch)
tree9b54e4aa1bba19924f961ae725aa0fa95c3b9266 /sh/shrc
parentMerge branch 'release/v10.15.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-9c0e7d95be170361cf669664f19efa42d687d9bb.tar.gz
dotfiles-9c0e7d95be170361cf669664f19efa42d687d9bb.zip
Merge branch 'release/v10.16.0'v10.16.0
* release/v10.16.0: Use inline integers rather than bit shifting
Diffstat (limited to 'sh/shrc')
-rw-r--r--sh/shrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/shrc b/sh/shrc
index 26f69c0c..88601391 100644
--- a/sh/shrc
+++ b/sh/shrc
@@ -5,7 +5,7 @@ command -p mesg n 2>/dev/null
command -p stty -ixon -ctlecho 2>/dev/null
# Keep around 4K lines of history in memory
-HISTSIZE=$((1 << 12))
+HISTSIZE=4096
# If HOSTNAME isn't set by this shell, we'll do it
if [ -z "$HOSTNAME" ] ; then