[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: mm-util.el question
From: |
Katsumi Yamaoka |
Subject: |
Re: mm-util.el question |
Date: |
Tue, 12 Apr 2005 09:39:05 +0900 |
User-agent: |
Gnus/5.110003 (No Gnus v0.3) Emacs/22.0.50 (gnu/linux) |
>>>>> In <address@hidden> Katsumi Yamaoka wrote:
> (let ((string (string-as-unibyte "\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"))
> (buffer (get-buffer-create "*testing*")))
> (pop-to-buffer buffer)
> (erase-buffer)
> (set-buffer-multibyte t)
> (insert (mm-string-to-multibyte string)))
> The `string' have to be shown as `\370\371\372\373\374\375\376\377',
> not as some *characters*.
Sorry, that was not appropriate. Here's a new one.
(let ((string "\214\352\227\245\346")
(buffer (get-buffer-create "*testing*")))
(pop-to-buffer buffer)
(erase-buffer)
(set-buffer-multibyte t)
(insert (mm-string-to-multibyte string)))