diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-25 17:10:48 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-25 17:10:48 +0000 |
commit | 7caf810e201fca2daee0776f6b31030b16e70acb (patch) | |
tree | dc366a2bf859c518b7d564b48fd8fd29216b11ad /map.c | |
parent | * func.c (initMouseAction): remove unsed variables: x, width, map (diff) | |
download | w3m-7caf810e201fca2daee0776f6b31030b16e70acb.tar.gz w3m-7caf810e201fca2daee0776f6b31030b16e70acb.zip |
* map.c (follow_map_menu): MapArea *a is used ifdef MENU_MAP
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rw-r--r-- | map.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: map.c,v 1.15 2002/11/19 17:48:00 ukai Exp $ */ +/* $Id: map.c,v 1.16 2002/11/25 17:10:52 ukai Exp $ */ /* * client-side image maps */ @@ -210,9 +210,9 @@ follow_map_menu(Buffer *buf, char *name, Anchor *a_img, int x, int y) { MapList *ml; ListItem *al; - MapArea *a; int i, selected = -1, initial = 0; #ifdef MENU_MAP + MapArea *a; char **label; #endif |