diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-12-10 15:41:31 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-12-10 15:41:31 +0000 |
commit | 529b4cb63ddea2286cf2b98321294df69b0d262c (patch) | |
tree | 2b31c6fac8ae55c1f9b657a4eb797ad59991bca4 /menu.c | |
parent | fix indent (diff) | |
download | w3m-529b4cb63ddea2286cf2b98321294df69b0d262c.tar.gz w3m-529b4cb63ddea2286cf2b98321294df69b0d262c.zip |
[w3m-dev 03552] Re: link list
* menu.c (accesskey_menu): check hseq
(list_menu): check hseq
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r-- | menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; } |