rc

[fork] interactive rc shell
Log | Files | Refs | README | LICENSE

commit 668096b6d336128d6828b0e0bf214e2a228d7026
parent f42cd916f72863cae6f2d49dc66b5bd089f4364e
Author: Toby Goodwin <toby@paganbooks.eu>
Date:   Wed, 30 May 2018 21:50:52 +0100

very minor cleanups

Diffstat:
M.gitignore | 1+
MChangeLog | 4++++
Mbuiltins.c | 1-
Mhash.c | 1-
4 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,4 +1,5 @@ *~ +.*.swp aclocal.m4 autom4te.cache/ compile diff --git a/ChangeLog b/ChangeLog @@ -1006,3 +1006,7 @@ Changes since rc-1.5b2 Tidiness: be consistent about using tabs everywhere, and add a .vimrc to keep it so in the future. + +2018-05-30 + + Feature: readline can now complete commands. diff --git a/builtins.c b/builtins.c @@ -640,4 +640,3 @@ static void b_limit(char **av) { extern char *compl_builtin(const char *text, int state) { return compl_name(text, state, &builtins[0].name, arraysize(builtins), &builtins[1].name - &builtins[0].name); } - diff --git a/hash.c b/hash.c @@ -340,4 +340,3 @@ extern char *compl_fn(const char *text, int state) { extern char *compl_var(const char *text, int state) { return compl_name(text, state, &vp[0].name, vsize, &vp[1].name - &vp[0].name); } -