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

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

Char code to Emacs string.


From: Oleksandr Gavenko
Subject: Char code to Emacs string.
Date: Wed, 01 Jun 2011 10:59:29 +0300
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.17) Gecko/20110414 Thunderbird/3.1.10

This code not work because 'make-char' do not understand 'unicode' arg
(which intended to print chars with it unicode code):

(let (i (start ?\x1B6) (end ?\x1B7C))
  (setq i start)
  (while (<= i end)
    (message "%s - %x" (make-char 'unicode i) i)
    (setq i (+ 1 i))
    ) )

How I can get list of possible CHARSET for 'make-char'
and how this code must be fixed to work properly?




reply via email to

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