From c450d7eb1e1656b15ff91622a320f0072fe6a178 Mon Sep 17 00:00:00 2001 From: Paul Ackersviller Date: Mon, 5 Nov 2007 01:53:23 +0000 Subject: Merge of 22950: starting menu completion with reverse-menu-complete used the first match instead of the last. --- Src/Zle/zle_tricky.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Src') diff --git a/Src/Zle/zle_tricky.c b/Src/Zle/zle_tricky.c index 9bd69a192..ecd3d98bc 100644 --- a/Src/Zle/zle_tricky.c +++ b/Src/Zle/zle_tricky.c @@ -318,8 +318,14 @@ mod_export int reversemenucomplete(char **args) { wouldinstab = 0; - if (!menucmp) - return menucomplete(args); + if (!menucmp) { + menucomplete(args); + /* + * Drop through, since we are now on the first item instead of + * the last. We've already updated the display, so this is a + * bit inefficient, but it's simple and it works. + */ + } runhookdef(REVERSEMENUHOOK, NULL); return 0; -- cgit 1.4.1