Re: [U-Boot] [RFC PATCH 2/2] env: re-add support for auto-completion

2010-12-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message 1291807565-4831-2-git-send-email-vap...@gentoo.org you wrote: Currently, only basic completion is supported (no globs), but this is what we had previously. The downside is that the results are not returned in any sorted order. The upside is that we get any

Re: [U-Boot] [RFC PATCH 2/2] env: re-add support for auto-completion

2010-12-17 Thread Mike Frysinger
On Friday, December 17, 2010 15:10:14 Wolfgang Denk wrote: Mike Frysinger wrote: Currently, only basic completion is supported (no globs), but this is what we had previously. The downside is that the results are not returned in any sorted order. The upside is that we get any results at

Re: [U-Boot] [RFC PATCH 2/2] env: re-add support for auto-completion

2010-12-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message 201012171535.08619.vap...@gentoo.org you wrote: Why can we not collect the results and sort them like we do for env print ? hmm, i dont think the previous code did do any sorting. it just relied on the results of the env code being sorted already. i

[U-Boot] [RFC PATCH 2/2] env: re-add support for auto-completion

2010-12-08 Thread Mike Frysinger
Currently, only basic completion is supported (no globs), but this is what we had previously. The downside is that the results are not returned in any sorted order. The upside is that we get any results at all. Signed-off-by: Mike Frysinger vap...@gentoo.org --- common/command.c|3 +--