[w3m-dev 03552] Re: link list

* menu.c (accesskey_menu): check hseq
	(list_menu): check hseq
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2002-12-10 15:41:31 +00:00
parent df0a52887b
commit 529b4cb63d
2 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2002-12-11 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 03552] Re: link list
* menu.c (accesskey_menu): check hseq
(list_menu): check hseq
2002-12-11 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 03551] Re: External URI loader
@@ -5681,4 +5687,4 @@ a * [w3m-dev 03276] compile error on EWS4800
* release-0-2-1
* import w3m-0.2.1
$Id: ChangeLog,v 1.607 2002/12/10 15:36:10 ukai Exp $
$Id: ChangeLog,v 1.608 2002/12/10 15:41:31 ukai Exp $

6
menu.c
View File

@@ -1,4 +1,4 @@
/* $Id: menu.c,v 1.28 2002/12/10 15:36:11 ukai Exp $ */
/* $Id: menu.c,v 1.29 2002/12/10 15:41:32 ukai Exp $ */
/*
* w3m menu.c
*/
@@ -1935,7 +1935,7 @@ accesskey_menu(Buffer *buf)
a = retrieveCurrentAnchor(buf);
if (a && a->accesskey && IS_ASCII(a->accesskey)) {
for (i = 0; i < nitem; i++) {
if (a == ap[i]) {
if (a->hseq == ap[i]->hseq) {
menu.initial = i;
break;
}
@@ -2049,7 +2049,7 @@ list_menu(Buffer *buf)
a = retrieveCurrentAnchor(buf);
if (a) {
for (i = 0; i < nitem; i++) {
if (a == ap[i]) {
if (a->hseq == ap[i]->hseq) {
menu.initial = i;
break;
}