help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: No display-table with UTF-8


From: Kevin Rodgers
Subject: Re: No display-table with UTF-8
Date: Thu, 05 Feb 2004 17:09:23 -0700
User-agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2

Daniel Pfeiffer wrote:

after I ran into too many problems a few years back, I'm currently taking
another shot at updating my X-environment to a de_DE.UTF-8 locale.  This works
nicely with CVS emacs.

The problem are these kind of lines in my .emacs:

(set-char-table-extra-slot standard-display-table 2 9437276)
(aset standard-display-table 2208 [9437276 ?\ ])
(aset standard-display-table 2221 [9437276 ?-])

where those weird huge numbers are a highlighted backslash:

(+ (lsh (face-id 'secondary-selection) 19) ?\\)

Too bad standard-display-table is nil when I set LANG this way.  How do I
highlight the extra-slots when using unicode?

How about:

(or standard-display-table
    (setq standard-display-table (make-display-table)))

--
Kevin Rodgers



reply via email to

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