From: Thien-Thi Nguyen <ttn@gnuvola.org>
To: masashi ito <ma345to@gmx.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: execute a command with euc-jp
Date: Thu, 05 May 2011 10:31:52 +0200 [thread overview]
Message-ID: <87wri5r1jb.fsf@ambire.localdomain> (raw)
In-Reply-To: <20110505002934.GB18433@masashi-netbook> (masashi ito's message of "Wed, 4 May 2011 20:29:34 -0400")
() masashi ito <ma345to@gmx.com>
() Wed, 4 May 2011 20:29:34 -0400
(defun myhowm-menu-eucjp ()
"to show howm menu with eucjp"
(interactive)
(universal-coding-system-argument 'euc-jp)
(howm-menu)
)
What should I do to run the command, howm-menu, with the euc-jp
encoding automatically without prompting me to enter "howm-menu."
The long (but more satisfying IMHO) way:
Move the cursor to ‘universal-coding-system-argument’ and type
‘C-h f RET’. Emacs will show a buffer *Help* at the top of
which appears:
universal-coding-system-argument is an interactive compiled
Lisp function in `mule-cmds.el'.
If your Emacs is properly installed, the words mule-cmds.el will be
presented as a hyperlink. You can move the cursor there (by typing
TAB repeatedly) and type RET to follow it, or click with the mouse.
Doing so will open a buffer viewing that file, with cursor at function
‘universal-coding-system-argument’.
Type ‘C-M-e’ to go to the end of the defun. Note the form:
(let ((coding-system-for-read coding-system)
(coding-system-for-write coding-system)
(coding-system-require-warning t)
(current-prefix-arg prefix))
(message "")
(call-interactively cmd))
or something like that. This shows the basic approach of how to
invoke a command using a specific coding system: ‘let’-bind some
variables to the desired value around a call to ‘call-interactively’.
Transfer this form into ‘myhowm-menu-eucjp’, hard-coding the constant
bits as you see fit, and pruning the parts that don't seem relevant.
You might end up with:
The short (but untested, only derived) way:
(defun myhowm-menu-eucjp ()
"to show howm menu with eucjp"
(interactive)
(let ((coding-system-for-read 'euc-jp)
(coding-system-for-write 'euc-jp)
(coding-system-require-warning t))
(call-interactively 'howm-menu)))
In any case, if your Emacs is not properly installed, fix that first.
next prev parent reply other threads:[~2011-05-05 8:31 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-05 0:29 execute a command with euc-jp masashi ito
2011-05-05 8:31 ` Thien-Thi Nguyen [this message]
2011-05-05 8:44 ` Bastian Ballmann
2011-05-05 8:45 ` Bastian Ballmann
2011-05-05 22:01 ` masashi ito
2011-05-06 0:37 ` Thien-Thi Nguyen
2011-05-06 3:50 ` masashi ito
2011-05-06 8:10 ` Thien-Thi Nguyen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87wri5r1jb.fsf@ambire.localdomain \
--to=ttn@gnuvola.org \
--cc=help-gnu-emacs@gnu.org \
--cc=ma345to@gmx.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.