diff options
author | June McEnroe <june@causal.agency> | 2020-06-08 16:35:58 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-06-08 16:35:58 -0400 |
commit | 5edd42165eadd7f285ed02f4de75c9a269366a26 (patch) | |
tree | d8631d3562cf948d894868a83970bf0a9b92d221 /bin/1sh | |
parent | Prefix mandoc with exec in about-filter (diff) | |
download | src-5edd42165eadd7f285ed02f4de75c9a269366a26.tar.gz src-5edd42165eadd7f285ed02f4de75c9a269366a26.zip |
Remove reference to FreeBSD-specific libedit hack
Newer versions of libedit have sane tab-complete now without FreeBSD's hacks, and in fact the hack is gone in FreeBSD-CURRENT. I'm still a little confused why binding this weird function is necessary at all, but at least it exists everywhere, I guess.
Diffstat (limited to '')
-rw-r--r-- | bin/1sh/histedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/1sh/histedit.c b/bin/1sh/histedit.c index 9784b1f1..459cc751 100644 --- a/bin/1sh/histedit.c +++ b/bin/1sh/histedit.c @@ -129,7 +129,7 @@ histedit(void) el_set(el, EL_RPROMPT, getrprompt); 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"); |