カテゴリ「Emacs」最新ページ / 1 2 3 4 5 6 7 8 次ページ / page 1 (8)
2001-12-30 (日)
■ Emacs のコンパイル、インストール [Emacs][インストールメモ]
(URL: http://emacs-20.ki.nu/)
- Emacs20 のソース
ftp://ftp.iij.ad.jp/pub/GNU/emacs/emacs-20.7.tar.gz
ftp://ftp.iij.ad.jp/pub/GNU/emacs/leim-20.7.tar.gz
ftp://ftp.ki.nu/pub/emcws/emcws-20.7-20011002.gz
- Emacs21 のソース
ftp://ftp.iij.ad.jp/pub/GNU/emacs/emacs-21.1.tar.gz
ftp://ftp.iij.ad.jp/pub/GNU/emacs/leim-21.1.tar.gz
ftp://ftp.ki.nu/pub/emcws/emcws-21.1-20011024.gz
- apel, flim, semi のソース
ftp://ftp.m17n.org/pub/mule/apel/apel-10.3.tar.gz
ftp://ftp.m17n.org/pub/mule/flim/flim-1.14/flim-1.14.3.tar.gz
ftp://ftp.m17n.org/pub/mule/semi/semi-1.14-for-flim-1.14/flim-1.14.3.tar.gz
- コンパイル&インストール
% setenv SITELISP /usr/local/share/emacs/site-lisp
% setenv EMACS emcws
% gtar xvzf emacs-20.7.tar.gz
% zcat emcws-20.7-20011002.gz | /usr/local/bin/patch -s -p0
% mkdir work ; cd work
% ../emacs-20.7/configure \
--with-wnn6 \
--with-wnn-includes=/usr/lib/locale/ja/wnn/demo/include/wnn \
--with-wnn-libraries=/usr/lib/locale/ja/wnn/demo/lib \
--x-includes=/usr/openwin/include \
--x-libraries=/usr/openwin/lib
% make
% make install
2001-12-30 (日)
■ car と cdr の語源 [Emacs]
car(カー): `Contents of the Address part of the Register'
cdr(クダー): `Contents of the Decrement part of the Register'
これらのフレーズは、Lisp が開発された頃の極めて初期のハードウェアの
特定の部分に基づくものであるが、単に時代遅れであるというだけでなく、
実に 25年以上もの間、Lisp に関わる人々にとって全く見当はずれのものであった。
だがしかし、これらの関数をもっと合理的な名前で呼ぼうとした学者も
何人かいたにも関わらず、現在でもこの古い用語が使われている。
2002-01-01 (火)
■ INOUE's Home Page (Emacs20情報(cc-mode)) [Emacs]
<http://www.ainet.or.jp/~inoue/index.html>
<http://home.catv.ne.jp/pp/ginoue/> に引っ越すかも。
2002-01-13 (日)
■ Emacs と Elisp のマニュアルを Info にする [Emacs]
○GNU Emacs マニュアル 20.6
<http://www.ascii.co.jp/books/detail/4-7561/4-7561-3413-0.html>
・マニュアル本体
<ftp://ftp.ascii.co.jp/pub/GNU/emacs-20.x/emacs-20.6-man-jp.tgz>
・@nodeの不備を補完するパッチ
<http://namazu.org/~tsuchiya/doc/emacs-20.6-man-jp.patch.bz2>
% gtar xzf emacs-20.6-man-jp.tgz
% cd emacs-20.6-man-jp
% bzcat ../emacs-20.6-man-jp.patch.bz2 | patch
ack.texiを emacs-20.7のアーカイブファイルからコピー
C-x C-f emacs.texi [RET]
M-x texinfo-format-buffer [RET]
C-x C-s
% cp emacs-ja* /usr/local/info
/usr/local/info/dirを編集して終わり。
○Emacs Lisp リファレンスマニュアル
<http://www.ascii.co.jp/books/detail/4-7561/4-7561-3414-9.html>
・マニュアル本体
<ftp://ftp.ascii.co.jp/pub/GNU/elisp-manual-20/elisp-manual-20-2.5-jp.tgz>
・訂正情報
<ftp://ftp.ascii.co.jp/pub/GNU/elisp-manual-20/elisp-manual-20-2.5-jp.ERRATA.000422.jis>
<ftp://ftp.ascii.co.jp/pub/GNU/elisp-manual-20/elisp-manual-20-2.5-jp.ERRATA.000508.jis>
・@nodeの不備を補完するパッチ
<http://namazu.org/~tsuchiya/doc/elisp-manual-20-2.5-jp.patch.bz2>
% gtar xzf elisp-manual-20-2.5-jp.tgz
% cd elisp-manual-20-2.5-jp
% bzcat ../elisp-manual-20-2.5-jp.patch.bz2 | patch
% cat ../elisp-manual-20-2.5-jp.ERRATA.000422.jis | patch
% cat ../elisp-manual-20-2.5-jp.ERRATA.000508.jis | patch
% ln -s index.unperm index.texi
なぜかinternals.texiだけうまくいかないので手動修正。。。
C-x C-f elisp.texi [RET]
M-x texinfo-format-buffer [RET]
% cp elisp-jp* /usr/local/info
/usr/local/info/dirを編集して終わり。
2002-02-04 (月)
■ tamago の使い方 [Emacs]
○リージョンを(半角カナ|ひらがな|カタカナ|全角)に変換。
M-x japanese-(hankaku|hiragana|katakana|zenkaku)-region
○C-\(toggle-input-method)で日本語が入力できる状態で...
C-x C-m h(its-select-hiragana)........... ひらがな
C-x C-m k(its-select-katakana)........... カタカナ
C-x C-m x(its-select-hankaku-katakana)... 半角カナ
C-x C-m z(its-select-zenkaku-downcase)... 全角小文字
C-x C-m Z(its-select-zenkaku-upcase)..... 全角大文字
カテゴリ「Emacs」最新ページ / 1 2 3 4 5 6 7 8 次ページ / page 1 (8)
最終更新時間: 2010-08-29 06:00


