[w3m-dev 02817]

From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2002-01-10 15:43:11 +00:00
parent e7c6a1c7f9
commit 74a537f811
2 changed files with 8 additions and 3 deletions

4
menu.c
View File

@@ -1,4 +1,4 @@
/* $Id: menu.c,v 1.10 2002/01/10 15:39:21 ukai Exp $ */
/* $Id: menu.c,v 1.11 2002/01/10 15:43:11 ukai Exp $ */
/*
* w3m menu.c
*/
@@ -979,7 +979,7 @@ menuBackwardSearch(Menu *menu, char *str, int from)
from = menu->nitem - 1;
for (i = from; i >= 0; i--)
if (menu->item[i].type != MENU_NOP &&
regexMatch(menu->item[i].label, 0, 1) == 1)
regexMatch(menu->item[i].label, -1, 1) == 1)
return i;
return -1;
}