[Mac OS X Softwares], [Setting up Mac]
If you simply want to launch emacs inside a Terminal window, type as follows.
$ emacs -nw [filename]
The "-nw" option stands for "no window".
If you want to launch Emacs in another window (or as a separate application), install Carbon Emacs Package as follows. With this, you can use commands from menu bar, and type Japanese.
alias em="/Applications/Emacs.app/Contents/MacOS/Emacs"This way, one can launch multiple emacs by:
$ em foo.txt & $ em bar.txt & ....
2008-01-09 Taku Yamanaka