Emacs23のrcircの設定(非互換注意)
Emacs23へ移行したのだが、設定が非互換になってしまったので動かなかった。
Emacs23ではrcirc-server-alistを設定するとよい。サーバが127.0.0.1なのはtiarraを使っているため。
(setq rcirc-server-alist '((;;サーバ "127.0.0.1" ;;デフォルトで加入するチャネル :channels ("#emacs-ja@fn" "#emacs-lisp-ja@fn"))))
rcirc-server-alist is a variable defined in `rcirc.el'. Its value is (("127.0.0.1" :channels ("#emacs-ja@fn" "#emacs-lisp-ja@fn"))) Documentation: An alist of IRC connections to establish when running `rcirc'. Each element looks like (SERVER-NAME PARAMETERS). SERVER-NAME is a string describing the server to connect to. The optional PARAMETERS come in pairs PARAMETER VALUE. The following parameters are recognized: `:nick' VALUE must be a string. If absent, `rcirc-default-nick' is used for this connection. `:port' VALUE must be a number or string. If absent, `rcirc-default-port' is used. `:user-name' VALUE must be a string. If absent, `rcirc-default-user-name' is used. `:full-name' VALUE must be a string. If absent, `rcirc-default-full-name' is used. `:channels' VALUE must be a list of strings describing which channels to join when connecting to this server. If absent, no channels will be connected to automatically. You can customize this variable. [back]