diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-19 19:19:21 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-19 19:19:21 +0000 |
commit | 885fe74b2fc564585733e47736c2ccda2b7c8c02 (patch) | |
tree | a8d23896a68f6d72de1cbab21fbac01bbf9a28b9 | |
parent | XMakefile (funcname1.h funcname2.h): sort as well as funcname.c (diff) | |
download | w3m-885fe74b2fc564585733e47736c2ccda2b7c8c02.tar.gz w3m-885fe74b2fc564585733e47736c2ccda2b7c8c02.zip |
Gpm_Close() is required.
closes: Debian Bug#120221: w3m-ssl: trashes terminal on exit
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | terms.c | 6 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2001-11-20 Fumitoshi UKAI <ukai@debian.or.jp> + + * terms.c (mouse_init): Gpm_Close() is required. + closes: Debian Bug#120221: w3m-ssl: trashes terminal on exit + 2001-11-20 Kiyokazu SUTO <suto@ks-and-ks.ne.jp> * XMakefile (funcname1.h funcname2.h): sort as well as funcname.c @@ -1,4 +1,4 @@ -/* $Id: terms.c,v 1.7 2001/11/19 08:17:13 ukai Exp $ */ +/* $Id: terms.c,v 1.8 2001/11/19 19:19:21 ukai Exp $ */ /* * An original curses library for EUC-kanji by Akinori ITO, December 1989 * revised by Akinori ITO, January 1995 @@ -1728,7 +1728,11 @@ mouse_init() /* * If Gpm_Open() success, returns >= 0 * Gpm_Open() returns -2 in case of xterm. + * Gpm_Close() is necessary here. Otherwise, + * xterm is being left in the mode where the mouse clicks are + * passed through to the application. */ + Gpm_Close(); is_xterm = 1; } else { gpm_handler = gpm_process_mouse; |