aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/ibuffer.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e5286147be7..03a23d7bdc2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-02-11 Colin Walters <walters@verbum.org>
2
3 * ibuffer.el (ibuffer-switch-format): Supply required argument for
4 `ibuffer-current-formats'.
5
12002-02-12 Miles Bader <miles@gnu.org> 62002-02-12 Miles Bader <miles@gnu.org>
2 7
3 * faces.el (mode-line-inactive): Add dark-background variant. 8 * faces.el (mode-line-inactive): Add dark-background variant.
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el
index 8ca3d9d1933..e3ae9dcc5c4 100644
--- a/lisp/ibuffer.el
+++ b/lisp/ibuffer.el
@@ -1694,7 +1694,7 @@ If optional argument INCLUDE-LINES is non-nil, return a list like
1694 (unless (consp ibuffer-formats) 1694 (unless (consp ibuffer-formats)
1695 (error "Ibuffer error: No formats!")) 1695 (error "Ibuffer error: No formats!"))
1696 (setq ibuffer-current-format 1696 (setq ibuffer-current-format
1697 (if (>= ibuffer-current-format (1- (length (ibuffer-current-formats)))) 1697 (if (>= ibuffer-current-format (1- (length (ibuffer-current-formats nil))))
1698 0 1698 0
1699 (1+ ibuffer-current-format))) 1699 (1+ ibuffer-current-format)))
1700 (ibuffer-update-format) 1700 (ibuffer-update-format)