diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-10-05 23:22:16 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-10-05 23:25:03 +0200 |
commit | ead5c5cc5196c373421eaf8ebd996e652a37de81 (patch) | |
tree | db76b6c85b0e706b6bedbe5725f34a2ce41241c6 /lisp/ibuffer.el | |
parent | b2c50d7cf36b8df931be0864f586cdf272886b11 (diff) | |
download | emacs-ead5c5cc5196c373421eaf8ebd996e652a37de81.tar.gz emacs-ead5c5cc5196c373421eaf8ebd996e652a37de81.tar.bz2 emacs-ead5c5cc5196c373421eaf8ebd996e652a37de81.zip |
Avoid using variable before it has been initialized
* lisp/ibuffer.el (ibuffer-shrink-to-fit): Don't try to use
ibuffer-auto-mode variable before ibuf-ext.el has been loaded.
(Bug#51029)
Diffstat (limited to 'lisp/ibuffer.el')
-rw-r--r-- | lisp/ibuffer.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index 6c0180590b9..046595a4d90 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el @@ -1079,7 +1079,8 @@ a new window in the current frame, splitting vertically." ;; Make sure that redisplay is performed, otherwise there can be a ;; bad interaction with code in the window-scroll-functions hook (redisplay t) - (when (buffer-local-value 'ibuffer-auto-mode (window-buffer)) + (when (and (boundp 'ibuffer-auto-mode) ; ibuf-ext.el might not be loaded yet + (buffer-local-value 'ibuffer-auto-mode (window-buffer))) (fit-window-to-buffer nil (and owin (/ (frame-height) |