aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--func.c6
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6f2d476..4fc724a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-12-04 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
+
+ * [w3m-dev 03516] Re: 2 stroke keybinding
+ * func.c (keymap_initialized): initialized to FALSE
+ (setKeymap): push KeyData
+
2002-12-04 Fumitoshi UKAI <ukai@debian.or.jp>
* NEWS: 2 stroke keybinding
@@ -5388,4 +5394,4 @@ a * [w3m-dev 03276] compile error on EWS4800
* release-0-2-1
* import w3m-0.2.1
-$Id: ChangeLog,v 1.581 2002/12/03 16:03:46 ukai Exp $
+$Id: ChangeLog,v 1.582 2002/12/03 16:07:37 ukai Exp $
diff --git a/func.c b/func.c
index 70f8083..94ef218 100644
--- a/func.c
+++ b/func.c
@@ -1,4 +1,4 @@
-/* $Id: func.c,v 1.18 2002/12/03 16:01:31 ukai Exp $ */
+/* $Id: func.c,v 1.19 2002/12/03 16:07:40 ukai Exp $ */
/*
* w3m func.c
*/
@@ -14,7 +14,7 @@
#define KEYDATA_HASH_SIZE 16
static Hash_iv *keyData = NULL;
-static char keymap_initialized;
+static char keymap_initialized = FALSE;
static struct stat current_keymap_file;
void
@@ -104,6 +104,8 @@ setKeymap(char *p, int lineno, int verbose)
keyData = newHash_iv(KEYDATA_HASH_SIZE);
putHash_iv(keyData, c, (void *)s);
}
+ else if (getKeyData(c))
+ putHash_iv(keyData, c, NULL);
}
void