diff options
| author | Ben Wong <bugs.debian.org@wongs.net> | 2018-10-26 12:34:19 +0000 | 
|---|---|---|
| committer | Tatsuya Kinoshita <tats@debian.org> | 2018-10-26 12:34:19 +0000 | 
| commit | 94ab9857e9e7ef026c74b67b7a880f2d95125d06 (patch) | |
| tree | 2da7f8b0bbae850b0aa73bb3bb01bab9de06c92f | |
| parent | Update ChangeLog (diff) | |
| download | w3m-94ab9857e9e7ef026c74b67b7a880f2d95125d06.tar.gz w3m-94ab9857e9e7ef026c74b67b7a880f2d95125d06.zip | |
Fix that the MarkAllPages option works as originally intended
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911929
Diffstat (limited to '')
| -rw-r--r-- | buffer.c | 2 | ||||
| -rw-r--r-- | display.c | 4 | 
2 files changed, 6 insertions, 0 deletions
| @@ -47,6 +47,8 @@ newBuffer(int width)  #ifdef USE_M17N      n->auto_detect = WcOption.auto_detect;  #endif +    n->check_url = MarkAllPages; /* use default from -o mark_all_pages */ +    n->need_reshape = 1;	 /* always reshape new buffers to mark URLs */      return n;  } @@ -497,6 +497,10 @@ displayBuffer(Buffer *buf, int mode)  	save_current_buf = buf;      }  #endif +    if (mode == B_FORCE_REDRAW &&  (buf->check_url & CHK_URL) ) { +	chkURLBuffer(buf); +	displayBuffer(buf, B_NORMAL); +    }  }  static void | 
