[BusyBox-cvs] busybox/shell ash.c,1.88,1.89
Erik Andersen
andersen at busybox.net
Fri Feb 6 10:33:21 UTC 2004
- Previous message: [BusyBox-cvs] busybox/libbb Makefile.in, 1.32, 1.33 loop.c, 1.6, 1.7 mk_loop_h.sh, 1.2, NONE real_loop.h, 1.1, NONE
- Next message: [BusyBox-cvs] busybox/editors vi.c,1.32,1.33
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/cvs/busybox/shell
In directory nail:/tmp/cvs-serv24165/shell
Modified Files:
ash.c
Log Message:
Patch from vodz, based on bug report from Richard Kojedzinszky:
Richard,
>I have a problem, which I can reproduce now. I am using pre7 version of
>busybox, and the tab completion works fine. I mean, with an empty command
>line I press the TAB twice, and ash shows me the available commands. But
>when i process the profile file below, as
> $ . /etc/profile
>then it stops working, and the double-tab lists the directories available
>from the cwd, and not the commands. Has someone else meet this problem
>before, or am i doing something wrong?
>
>This is my '/etc/profile':
>- ---
># System profile
>
>PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
>export PATH
>trap ":" INT QUIT TERM
>
>export PS1="\h \w # "
Thanks. Patch attached.
--w
vodz
Index: ash.c
===================================================================
RCS file: /var/cvs/busybox/shell/ash.c,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -d -r1.88 -r1.89
--- ash.c 4 Feb 2004 08:24:39 -0000 1.88
+++ ash.c 6 Feb 2004 10:33:19 -0000 1.89
@@ -4126,9 +4126,6 @@
firstchange = 0;
clearcmdentry(firstchange);
builtinloc = idx_bltin;
-#ifdef CONFIG_FEATURE_COMMAND_TAB_COMPLETION
- cmdedit_path_lookup = newval;
-#endif
}
@@ -6026,6 +6023,7 @@
if (!iflag || parsefile->fd)
nr = safe_read(parsefile->fd, buf, BUFSIZ - 1);
else {
+ cmdedit_path_lookup = pathval();
nr = cmdedit_read_input((char *) cmdedit_prompt, buf);
if(nr == 0) {
/* Ctrl+C presend */
- Previous message: [BusyBox-cvs] busybox/libbb Makefile.in, 1.32, 1.33 loop.c, 1.6, 1.7 mk_loop_h.sh, 1.2, NONE real_loop.h, 1.1, NONE
- Next message: [BusyBox-cvs] busybox/editors vi.c,1.32,1.33
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the busybox-cvs
mailing list