From e9f521762addffe2532868082bc165ca53adb167 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 15 Jan 2019 23:37:38 -0500 Subject: Add basic HISTFILE load and save --- bin/cash/histedit.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'bin/cash/histedit.c') diff --git a/bin/cash/histedit.c b/bin/cash/histedit.c index d1e77f51..156800a1 100644 --- a/bin/cash/histedit.c +++ b/bin/cash/histedit.c @@ -146,12 +146,19 @@ bad: el_source(el, NULL); } } else { + HistEvent he; + const char *hf; + INTOFF; if (el) { /* no editing if not interactive */ el_end(el); el = NULL; } if (hist) { + hf = lookupvar("HISTFILE"); + if (hf != NULL && *hf != '\0') + if (history(hist, &he, H_SAVE, hf) == -1) + out2fmt_flush("sh: can't save history\n"); history_end(hist); hist = NULL; } @@ -160,6 +167,15 @@ bad: } +void +sethistfile(const char *hf) +{ + HistEvent he; + + if (hist != NULL && hf != NULL && *hf != '\0') + history(hist, &he, H_LOAD, hf); +} + void sethistsize(const char *hs) { -- cgit 1.4.1