+2002-01-21 Richard M. Stallman <rms@gnu.org>
+
+ * ibuffer.el: Don't require ibuf-ext at load time.
+ (ibuffer): Require ibuf-ext here.
+
2002-01-21 Francesco Potorti` <pot@gnu.org>
* generic-x.el (apache-conf-generic-mode): Highlight the first
(require 'ibuf-macs)
(require 'dired))
-;; This is loaded lazily, via byte-compile-dynamic
-(require 'ibuf-ext)
-
;;; Compatibility
(eval-and-compile
(if (fboundp 'window-list)
Optional argument SHRINK means shrink the buffer to minimal size. The
special value `onewindow' means always use another window."
(interactive "P")
+
+ ;; The individual functions are lazy-loaded, via byte-compile-dynamic,
+ ;; so we may as well load the file unconditionally now.
+ (require 'ibuf-ext)
+
(when ibuffer-use-other-window
(setq other-window-p (not other-window-p)))
(let* ((buf (get-buffer-create (or name "*Ibuffer*")))