% makeinfo --version
で確認するとmakeinfo (GNU texinfo) 4.6とのことなので、このまま
Copyright (C) 2003 Free Software Foundation, Inc.
There is NO warranty. You may redistribute this software
under the terms of the GNU General Public License.
For more information about these matters, see the files named COPYING.
訳注: 非常に重要な文章のため、原文を残しています。
-- 参考訳
一切の保証はありません。あなたは、GNU General Public Licence の文言の下で、
このソフトウェアを再配布できます。これらについてのより詳しい説明は、COPYING
というファイルを見てください。*2
% setenv CVS_RSH ssh*3
% cvs -z3 -d:ext:anoncvs@savannah.gnu.org:/cvsroot/emacs co emacs
% cd emacs
% ./configure
% make bootstrap
% sudo make install
set path = (/usr/local/bin $path)を追記しました。
(set-language-environment 'Japanese)Mew で imap のメールが読めるように ~/.mew.el を
(set-keyboard-coding-system 'sjis-mac)
(set-clipboard-coding-system 'sjis-mac)
(global-set-key "\C-h" 'backward-delete-char)
(global-set-key "\M-?" 'help-command)
(global-set-key "\C-i" 'tab-to-tab-stop)
(autoload 'mew "mew" nil t)
(autoload 'mew-send "mew" nil t)
(global-set-key "\C-cr" 'mew)
(autoload 'mew-user-agent-compose "mew" nil t)
(if (boundp 'mail-user-agent)
(setq mail-user-agent 'mew-user-agent))
(setq mew-proto "%")と作成しました。これで、Emacs 起動後 Control-c r でメールが読めます。
(setq mew-imap-user "IMAP ユーザ名")
(setq mew-imap-server "IMAP サーバ名")
$ chsh
して、/bin/tcsh に変更しました。普段使っている FreeBSD 環境の .tcshrc から最低のものだけを持ってきて、.tcshrc を以下の内容で作成しました。#csh .tcshrc fileMac OSX の流儀にある程度馴染んだら、一度システムを初期状態に戻して、一から環境設定を行うつもりです。遠慮せず、いろいろと試してみたいと思います。
alias h history 25
alias j jobs -l
alias la ls -aF
alias lf ls -FA
alias ll ls -lAF
setenv PAGER less
setenv EDITOR vi
setenv BLOCKSIZE K
setenv PERL_BADLANG 0
set correct = cmd
set ignoreeof
set rmstar
set addsuffix
set history = 200
set savehist = 200
bindkey ^N history-search-forward
bindkey ^P history-search-backward
if ($?prompt) then
# An interactive shell -- set some stuff up
set prompt="%m%s:`whoami` %c3% "
set filec
# make mail(1) happy:
setenv crt 24
endif