* bs.el (bs--down):

* ibuffer.el (ibuffer-redisplay-engine): Use `point-min' instead of 1.
This commit is contained in:
Juanma Barranquero 2009-02-25 20:33:19 +00:00
parent 16689c4084
commit e600eb79f4
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2009-02-25 Juanma Barranquero <lekktu@gmail.com>
* bs.el (bs--down):
* ibuffer.el (ibuffer-redisplay-engine): Use `point-min' instead of 1.
2009-02-25 Glenn Morris <rgm@gnu.org>
* dired-x.el (dired-guess-shell-alist-user): Fix doc typo.

View file

@ -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)))

View file

@ -2280,7 +2280,7 @@ If optional arg SILENT is non-nil, do not display progress messages."
(setq buffer-read-only t)
(set-buffer-modified-p ibuffer-did-modification)
(setq ibuffer-did-modification nil)
(goto-char 1)
(goto-char (point-min))
(forward-line orig))))
(defun ibuffer-quit ()