summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/1sh/histedit.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/bin/1sh/histedit.c b/bin/1sh/histedit.c
index 0d23e9aa..4c0821dd 100644
--- a/bin/1sh/histedit.c
+++ b/bin/1sh/histedit.c
@@ -68,7 +68,6 @@ History *hist;	/* history cookie */
 EditLine *el;	/* editline cookie */
 int displayhist;
 static FILE *el_in, *el_out, *el_err;
-static HistEvent he_saved;
 
 static void history_load(const char *hf);
 static void history_save(const char *hf);
@@ -185,8 +184,6 @@ history_load(const char *hf) {
 		return;
 	if (history(hist, &he, H_LOAD, ehf) == -1)
 		warning("%s: %s", he.str, ehf);
-	else
-		history(hist, &he_saved, H_FIRST);
 }
 
 
@@ -198,11 +195,7 @@ history_save(const char *hf) {
 	ehf = expandstr(hf);
 	if (ehf == NULL)
 		return;
-	if (he_saved.num == 0)
-		history(hist, &he_saved, H_LAST);
-	else
-		history(hist, &he_saved, H_NEXT_EVENT, he_saved.num + 1);
-	if (history(hist, &he, H_SAVE_INCR, ehf, he_saved.num) == -1)
+	if (history(hist, &he, H_SAVE, ehf) == -1)
 		warning("%s: %s", he.str, ehf);
 }
 
2015-08-13Remove redundant includesJohn Keeping 2015-08-13Makefile: include Git's config.mak.unameJohn Keeping 2015-08-13tests: allow shell to be overriddenJohn Keeping 2015-08-13redirect: cleanlinessJason A. Donenfeld 2015-08-13redirect: be more careful for different cgi setupsJason A. Donenfeld 2015-08-12ui-log: fix double countingJohn Keeping 2015-08-12log: allow users to follow a fileJohn Keeping 2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld 2015-08-12filters: apply HTML escapingLazaros Koromilas 2015-08-12git: update to v2.5.0Christian Hesse 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt