|--==> "SS" == Seiya Suda <seiya.suda(a)nifty.com> writes:
SS> I want to know how to delete the modeline information and make it
SS> a mere bar or line or what's like that.
(setq default-modeline-format nil)
In your ~/.xemacs/init.el should come pretty close. Buffers that set
their own modeline specs will override it though. For buffers that do
this, see if there is some kind of *-load-hook for the associated
mode. If so, you could:
(add-hook 'foo-load-hook
'(lambda ()
(setq modeline-format nil)
(redraw-modeline 'all)))
That should cover a large percentage of the buffers you are likely to
come across.
--
|---<Steve Youngs>---------------<GnuPG KeyID: 10D5C9C5>---|
| XEmacs - It's not just an editor. |
| It's a way of life. |
|------------------------------------<youngs(a)xemacs.org>---|