]> git.eshelyaron.com Git - emacs.git/commitdiff
* bs.el (bs--down):
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 25 Feb 2009 20:33:19 +0000 (20:33 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 25 Feb 2009 20:33:19 +0000 (20:33 +0000)
* ibuffer.el (ibuffer-redisplay-engine): Use `point-min' instead of 1.

lisp/ChangeLog
lisp/bs.el
lisp/ibuffer.el

index 76d3c343f18204d6c15937c6145ea10a6b45ebf1..afed8c8471cff34dc71d1c2add4f97152ef46c5d 100644 (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.
index 9b818e58a6e54cf78bbb984b7eded271e268cfc9..727216c9531349afae271b8e8e4e34be1ce4ff60 100644 (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)))
 
index 539e925b6b7fc62a0101ada79626a0470107a8a2..335f410475c2d48c6bfb701f91dd4f8a7b6c0aeb 100644 (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 ()