From f370355791012d22908c38f75872393b9074605a Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Mon, 16 Sep 2019 07:31:59 +0000 Subject: [PATCH] Do not use our custom completion function, it is not needed anymore --- bin/sh/histedit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c index 1a603317627d..5270f60dd9f7 100644 --- a/bin/sh/histedit.c +++ b/bin/sh/histedit.c @@ -122,7 +122,7 @@ histedit(void) el_set(el, EL_PROMPT, getprompt); el_set(el, EL_ADDFN, "sh-complete", "Filename completion", - _el_fn_sh_complete); + _el_fn_complete); } else { bad: out2fmt_flush("sh: can't initialize editing\n");