emacs-devel
[Top][All Lists]
Advanced

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

Re: <Cyrillic_schwa> is undefined


From: Kenichi Handa
Subject: Re: <Cyrillic_schwa> is undefined
Date: Wed, 05 Oct 2005 21:53:48 +0900
User-agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/22.0.50 (i686-pc-linux-gnu) MULE/5.0 (SAKAKI)

In article <address@hidden>, Baurzhan Ismagulov <address@hidden> writes:

> I can use emacs cvs with pt154 encoding on the Linux console. However,
> when I type some Cyrillic characters under X, emacs says, e.g.,
> "<Cyrillic_schwa> is undefined".

It seems that these X11 keysyms (in
/usr/include/X11/keysymdefs.h, perhaps newly added) are not
registered in x-keysym-table (in lisp/term/x-win.el).

#define XK_Cyrillic_GHE_bar                                0x680
#define XK_Cyrillic_ghe_bar                                0x690
...
#define XK_Cyrillic_U_macron                               0x68f
#define XK_Cyrillic_u_macron                               0x69f

For instance, for XK_Cyrillic_U_macron, you can add it as
this:

(puthash #x68F (decode-char 'ucs #x04EE) x-keysym-table)
         ^^^^keysym_code         ^^^^^^unicode_character_code

But, for instance, for XK_Cyrillic_GHE_bar, I don't know the
corresponding Unicode character code.  If you give me a list
of keysym_codes and the corresponding Unicode character
code, I'll add it in x-win.el.

---
Kenichi Handa
address@hidden




reply via email to

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