diff options
author | June McEnroe <june@causal.agency> | 2020-12-28 21:59:23 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-01-21 22:05:00 -0500 |
commit | a557a1895fa56e9f1a48c518734d1c75e71e0fd5 (patch) | |
tree | b4187a7fb73027638baa62b07e03f1429dd22606 | |
parent | dash: Fix multi-line prompts when right prompts are used (diff) | |
download | dash-a557a1895fa56e9f1a48c518734d1c75e71e0fd5.tar.gz dash-a557a1895fa56e9f1a48c518734d1c75e71e0fd5.zip |
dash: Set H_SETUNIQUE
-rw-r--r-- | src/histedit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/histedit.c b/src/histedit.c index 5816331..1b7ad23 100644 --- a/src/histedit.c +++ b/src/histedit.c @@ -169,6 +169,7 @@ sethistsize(const char *hs) (histsize = atoi(hs)) < 0) histsize = 100; history(hist, &he, H_SETSIZE, histsize); + history(hist, &he, H_SETUNIQUE, 1); } } |