[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: execute a command with euc-jp
From: |
masashi ito |
Subject: |
Re: execute a command with euc-jp |
Date: |
Thu, 5 May 2011 23:50:22 -0400 |
User-agent: |
Mutt/1.5.20 (2009-06-14) |
Dear Thien-Thi Nguyen,
Thank you very much again for your kind, thorough instruction. And I apologize
for my mistake. As you said, I didn't evaluate the newly defined function
properly. I did C-x, C-e, which I found somewhere on the Internet. When I did
C-M-x, everything worked like a charm! I appreciate your help very much!
Sincerely yours,
Masashi
On Fri, May 06, 2011 at 02:37:52AM +0200, Thien-Thi Nguyen wrote:
> () masashi ito <ma345to@gmx.com>
> () Thu, 5 May 2011 18:01:10 -0400
>
> As for the function definition, however, the code you suggested,
> unfortunately, didn't work (M-x myhowm-menu-eucjp didn't show anything).
>
> Perhaps you did not evaluate the new definition?
> I was able to see the menu appear with
>
> (defun ttn-howm-menu ()
> (interactive)
> (let ((coding-system-for-read 'euc-jp)
> (coding-system-for-write 'euc-jp)
> (coding-system-require-warning t))
> (call-interactively 'howm-menu)))
>
> and an installation of howm from howm-1.3.9.1.tar.gz. After copying this
> definition into *scratch*, i typed ‘C-M-x’ (i.e., ‘eval-defun’) and then
> ‘M-x ttn-howm-menu’.
>
> To verify that ‘eval-defun’ worked correctly, you can type into *scratch*:
>
> (symbol-function 'ttn-howm-menu)
>
> then type ‘C-j’ to inspect what Emacs thinks is the current definition.