aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2009-02-25 20:33:19 +0000
committerJuanma Barranquero2009-02-25 20:33:19 +0000
commite600eb79f4b891785d9dd99737eca26d18990d41 (patch)
tree6017227c60fd6dcd9dcb71382e359e4fa541292e
parent16689c40843aaecc5eda37f6536a6d2f414ea6e5 (diff)
downloademacs-e600eb79f4b891785d9dd99737eca26d18990d41.tar.gz
emacs-e600eb79f4b891785d9dd99737eca26d18990d41.zip
* bs.el (bs--down):
* ibuffer.el (ibuffer-redisplay-engine): Use `point-min' instead of 1.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/bs.el2
-rw-r--r--lisp/ibuffer.el2
3 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 76d3c343f18..afed8c8471c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-02-25 Juanma Barranquero <lekktu@gmail.com>
2
3 * bs.el (bs--down):
4 * ibuffer.el (ibuffer-redisplay-engine): Use `point-min' instead of 1.
5
12009-02-25 Glenn Morris <rgm@gnu.org> 62009-02-25 Glenn Morris <rgm@gnu.org>
2 7
3 * dired-x.el (dired-guess-shell-alist-user): Fix doc typo. 8 * dired-x.el (dired-guess-shell-alist-user): Fix doc typo.
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."
1009If at end of buffer list go to first line." 1009If at end of buffer list go to first line."
1010 (if (eq (line-end-position) (point-max)) 1010 (if (eq (line-end-position) (point-max))
1011 (progn 1011 (progn
1012 (goto-char 1) 1012 (goto-char (point-min))
1013 (forward-line bs-header-lines-length)) 1013 (forward-line bs-header-lines-length))
1014 (forward-line 1))) 1014 (forward-line 1)))
1015 1015
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el
index 539e925b6b7..335f410475c 100644
--- a/lisp/ibuffer.el
+++ b/lisp/ibuffer.el
@@ -2280,7 +2280,7 @@ If optional arg SILENT is non-nil, do not display progress messages."
2280 (setq buffer-read-only t) 2280 (setq buffer-read-only t)
2281 (set-buffer-modified-p ibuffer-did-modification) 2281 (set-buffer-modified-p ibuffer-did-modification)
2282 (setq ibuffer-did-modification nil) 2282 (setq ibuffer-did-modification nil)
2283 (goto-char 1) 2283 (goto-char (point-min))
2284 (forward-line orig)))) 2284 (forward-line orig))))
2285 2285
2286(defun ibuffer-quit () 2286(defun ibuffer-quit ()