summaryrefslogtreecommitdiff
path: root/Src/Zle/zle_hist.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Zle/zle_hist.c')
-rw-r--r--Src/Zle/zle_hist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Zle/zle_hist.c b/Src/Zle/zle_hist.c
index c6fb7acdb..97635b142 100644
--- a/Src/Zle/zle_hist.c
+++ b/Src/Zle/zle_hist.c
@@ -92,7 +92,7 @@ upline(void)
if (n < 0) {
zmult = -zmult;
- n = downline();
+ n = -downline();
zmult = -zmult;
return n;
}
@@ -176,7 +176,7 @@ downline(void)
if (n < 0) {
zmult = -zmult;
- n = upline();
+ n = -upline();
zmult = -zmult;
return n;
}