diff options
author | Dai Sato <satodai@w3m.jp> | 2007-06-07 10:54:10 +0000 |
---|---|---|
committer | Dai Sato <satodai@w3m.jp> | 2007-06-07 10:54:10 +0000 |
commit | 12193be8b818c71974515ce57676e177716d9e85 (patch) | |
tree | 9b2db34a74f2fc3235f5bd4981f5ca79daccd89a /terms.c | |
parent | make number prefixes working, when vi_prec_num=0. (diff) | |
download | w3m-12193be8b818c71974515ce57676e177716d9e85.tar.gz w3m-12193be8b818c71974515ce57676e177716d9e85.zip |
add handling xterm-incompatible terminals without gpm. [w3m-dev 04278]
Diffstat (limited to '')
-rw-r--r-- | terms.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: terms.c,v 1.57 2007/05/30 04:44:00 inu Exp $ */ +/* $Id: terms.c,v 1.58 2007/06/07 10:54:10 inu Exp $ */ /* * An original curses library for EUC-kanji by Akinori ITO, December 1989 * revised by Akinori ITO, January 1995 @@ -1897,7 +1897,7 @@ wgetch(void *p) int do_getch() { - if (is_xterm) + if (is_xterm || !gpm_handler) return getch(); else return Gpm_Getch(); @@ -2037,6 +2037,7 @@ mouse_init() conn.maxMod = 0; conn.minMod = 0; + gpm_handler = NULL; r = Gpm_Open(&conn, 0); if (r == -2) { /* |