all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Char code to Emacs string.
@ 2011-06-01  7:59 Oleksandr Gavenko
  2011-06-01  8:30 ` Thierry Volpiatto
  2011-06-01 13:12 ` Eli Zaretskii
  0 siblings, 2 replies; 6+ messages in thread
From: Oleksandr Gavenko @ 2011-06-01  7:59 UTC (permalink / raw)
  To: help-gnu-emacs

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?




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-06-08 13:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-01  7:59 Char code to Emacs string Oleksandr Gavenko
2011-06-01  8:30 ` Thierry Volpiatto
2011-06-01 13:12 ` Eli Zaretskii
2011-06-02 12:31   ` Oleksandr Gavenko
2011-06-02 14:36     ` Eli Zaretskii
2011-06-08 13:39       ` Oleksandr Gavenko

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.