diff options
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/ibuf-ext.el | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 03e6e3fd1d5..9d4a7f4644c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-01-17 Glenn Morris <rgm@gnu.org> + + * ibuf-ext.el (ibuffer-auto-mode): Remove call to deleted + ibuffer-update-mode-name. + 2008-01-16 Martin Rudalics <rudalics@gmx.at> * longlines.el (longlines-mode, longlines-show-region) diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index aafc93af990..810b9f03a16 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el @@ -243,8 +243,7 @@ With numeric ARG, enable auto-update if and only if ARG is positive." (plusp arg) (not ibuffer-auto-mode))) (frame-or-buffer-changed-p 'ibuffer-auto-buffers-changed) ; Initialize state vector - (add-hook 'post-command-hook 'ibuffer-auto-update-changed) - (ibuffer-update-mode-name)) + (add-hook 'post-command-hook 'ibuffer-auto-update-changed)) ;;;###autoload (defun ibuffer-mouse-filter-by-mode (event) |