diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-02-25 20:33:19 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-02-25 20:33:19 +0000 |
commit | e600eb79f4b891785d9dd99737eca26d18990d41 (patch) | |
tree | 6017227c60fd6dcd9dcb71382e359e4fa541292e /lisp/bs.el | |
parent | 16689c40843aaecc5eda37f6536a6d2f414ea6e5 (diff) | |
download | emacs-e600eb79f4b891785d9dd99737eca26d18990d41.tar.gz |
* bs.el (bs--down):
* ibuffer.el (ibuffer-redisplay-engine): Use `point-min' instead of 1.
Diffstat (limited to 'lisp/bs.el')
-rw-r--r-- | lisp/bs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/bs.el b/lisp/bs.el index 9b818e58a6e..727216c9531 100644 --- a/lisp/bs.el +++ b/lisp/bs.el @@ -1009,7 +1009,7 @@ If on top of buffer list go to last line." If at end of buffer list go to first line." (if (eq (line-end-position) (point-max)) (progn - (goto-char 1) + (goto-char (point-min)) (forward-line bs-header-lines-length)) (forward-line 1))) |