diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-02-06 17:15:04 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-02-06 17:15:04 +0000 |
commit | fbc26e9c4b8c8b09fdc307b6eb0d248fc243f354 (patch) | |
tree | be000941b4e8b94086e51e3515c20bbb6e24f4ab /configure | |
parent | fix typo (diff) | |
download | w3m-fbc26e9c4b8c8b09fdc307b6eb0d248fc243f354.tar.gz w3m-fbc26e9c4b8c8b09fdc307b6eb0d248fc243f354.zip |
[w3m-dev 03732] Re: scroll() is slow ?
* configure (use_raw_scroll): added
(config.h) use_raw_scroll
* config.h.dist (USE_RAW_SCROLL): added
* display.c (displayBuffer): ifdef USE_RAW_SCROLL
* proto.h (scroll): ifdef USE_RAW_SCROLL
(rscroll): ditto
(need_clrtoeol): if 0
(terms.c): if 0 need_clrtoeol
(scroll_raw): ifdef USE_RAW_SCROLL
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.96 2003/01/29 17:10:25 ukai Exp $ +# $Id: configure,v 1.97 2003/02/06 17:15:10 ukai Exp $ # Configuration. # @@ -883,6 +883,7 @@ def_param use_bufinfo n def_param use_egd y def_param enable_remove_trailingspaces n def_param menu_thin_frame n +def_param use_raw_scroll n def_param emacs_like_lineedit $include_opt def_param vi_prec_num $include_opt def_param label_topline $include_opt @@ -2316,6 +2317,11 @@ $def_enable_remove_trailingspaces $def_menu_thin_frame /* + * Use raw scroll + */ +$def_use_raw_scroll + +/* */ $def_table_expand $def_table_no_compact |