lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: lynx-dev coloring with character-set=utf-8


From: Christian Weisgerber
Subject: Re: lynx-dev coloring with character-set=utf-8
Date: 29 Jul 1999 04:27:07 +0200

Klaus Weide <address@hidden> wrote:

> [*] Afaik.  One difference though: Lynx does more screen refreshing
> for UTF-8 output.  Near end of display_page() in GridText.c:
> 
>     if (HTCJK != NOCJK || text->T.output_utf8) {
>         /*
>          *  For non-multibyte curses.
>          */
>         lynx_force_repaint();
>     }
> 
> Does taking this out change things?   

Yes, that fixes it. Highlighting now works for a display character set
of UTF-8.

--- lynx2-8-2/src/GridText.c.orig       Fri May 28 16:04:01 1999
+++ lynx2-8-2/src/GridText.c    Thu Jul 29 03:45:40 1999
@@ -1728,7 +1728,7 @@
     }
 #endif /* DISP_PARTIAL */
 
-    if (HTCJK != NOCJK || text->T.output_utf8) {
+    if (HTCJK != NOCJK) {
        /*
         *  For non-multibyte curses.
         */

-- 
Christian "naddy" Weisgerber                  address@hidden

reply via email to

[Prev in Thread] Current Thread [Next in Thread]