Jeff Miller <jmiller(a)smart.net> writes:
With the following build:
./configure '--with-dialogs=no' '--without-gif' '--with-jpeg=no'
'--with-ldap=no' '--with-sound=no' '--without-tty' '-
-with-gpm=no'
'--with-modules=no' '--with-database=no' '--with-menubars=no'
'--package-path=/usr/local/lib/xemacs/packa ges-21.0' '--with-png=no'
'--with-tiff=no' '--with-scrollbars=no' '--without-toolbars'
'--with-widgets=no' '--with-xface=no' '--with-xpm=no'
running src/xemacs fails complaining about init-gutter. I'm guessing
it's just a missing ifdef type problem.....
It's actually a problem of lisp code.
From dumped-lisp.el:
(when-feature (and gutter menubar
window-system) "gutter-items")
Because menubar is not compiled in, gutter-items is not
dumped and there's no init-gutter function.
I think gutter-items depends on menubar is wrong. I think
that dependencies comes from this setting.
(defcustom buffers-tab-omit-function 'buffers-menu-omit-invisible-buffers
I propose moving buffers-menu-omit-invisible-buffers to
buff-menu.el which is always dumped and remove above
depencency. I also want to move sort-buffer-menu-* since
I'd like to add sorting functionality to list-buffers, too.
(I like keyboard. :-)
--
Yoshiki Hayashi