next up previous
Next: 11.3 YaTeX Up: 11 Meadow Previous: 11.1 設定

11.2 他の emacs 達との住み分け

幸い emacs-version が違っている場合が多いので、 .emacs で分岐できる。 例えば、あるパソコンで次のようにした。
(cond
 ((string-match "21.4.*" emacs-version)
  (load-file "~/.xemacs.el")
  )
 ((string-match "22.0.*" emacs-version)
  ;(setq inhibit-startup-message t)
  (load-file "~/.meadow")
  )
 ((string-match "21.2.1" emacs-version)
  (load-file "~/.emacs21")
  )
)


next up previous
Next: 11.3 YaTeX Up: 11 Meadow Previous: 11.1 設定
桂田 祐史
2013-05-04