bug-ddd
[Top][All Lists]
Advanced

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

Motif character set bug


From: tedc
Subject: Motif character set bug
Date: Fri, 28 Jan 2005 12:29:27 -0800
User-agent: KMail/1.7.1

I'm trying to run GNU DDD 3.3.10 (i686-pc-linux-gnu) in --perl mode.

The source window freezes up as soon as it sees [chr(161), '!`'            ], 
#¡ (shown below).

I have run across a similar problem while upgrading from Motif 1.x to 2.x. 
(using DDD to debug).

I don't see an XtSetLanguageProc... in the sources and that is required to make 
the character sets display correctly uing Motif 2.x.

Anyway, just try to load this snippet of code and you'll see the problem.

Any help would be appreciated.

Tedc

my @specials = (
                ['<!--.*-->' , ''          ], #comments
                ['\$'    ,  '\$'           ], 
                ['\\\\(?!\$)', "\$\\backslash\$"], #\
                ['<'     , '$<$'           ],
                ['>'     , '$>$'           ],
                ['&'     , '\&'            ],
                ['%'     , '\%'            ],
                ['#'     , '\#'            ],
                ['{'     , '\{'            ],
                ['}'     , '\}'            ],
                ['_'     , '\_'            ],
                ['\^'    , '\^{}'          ],
                [chr(161), '!`'            ], #¡
               #[chr(162), ''              ], #¢*
                [chr(163), '{\\pounds}'    ], #£
               #[chr(164), ''              ], #¤*
                               );

reply via email to

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