Emacs21でのfringeの消し方

でいいことを知った。

color-theme

ちなみに color-theme なんてのがあるのね最近。

(require 'color-theme)
(color-theme-blue-mood)

こうすると対話的にいろいろ試せる。

(color-theme-select)

いくつか気に入ったやつを勝手に選んで施すようにしてみた。

(let
    ((themes
      '(color-theme-blue-mood
	color-theme-blue-sea
	color-theme-calm-forest
	color-theme-charcoal-black
	color-theme-clarity
	color-theme-dark-blue2
	color-theme-deep-blue
	color-theme-goldenrod
	color-theme-hober
	color-theme-ld-dark
	color-theme-sitaramv-solaris)))
  (random t)
  (funcall (nth (random (length themes)) themes)))

ちなみにGNU Emacs 21.3.50.1 (powerpc-apple-darwin7.7.0) of 2005-01-09 on iBookG4.localでのお話。