diff options
author | Michaël Cadilhac <michael.cadilhac@lrde.org> | 2006-12-24 17:31:20 +0000 |
---|---|---|
committer | Michaël Cadilhac <michael.cadilhac@lrde.org> | 2006-12-24 17:31:20 +0000 |
commit | 90dd8ef0a81a1d2d4f06865ea27f83ec561ecd9f (patch) | |
tree | 93cf1f864c6997dc6eaf18262fe228ae9c0fa7ac | |
parent | d78b75dd4de4c40e1c2cb51906d971801ffd57e9 (diff) | |
download | emacs-90dd8ef0a81a1d2d4f06865ea27f83ec561ecd9f.tar.gz emacs-90dd8ef0a81a1d2d4f06865ea27f83ec561ecd9f.tar.bz2 emacs-90dd8ef0a81a1d2d4f06865ea27f83ec561ecd9f.zip |
(bs--up): Remove interactive spec.
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/bs.el | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f465de81174..98c64bab784 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-12-24 Michaël Cadilhac <michael.cadilhac@lrde.org> + + * bs.el (bs--up): Remove interactive spec. + 2006-12-24 Chong Yidong <cyd@stupidchicken.com> * woman.el (woman-decode-buffer): Signal error for alien macro diff --git a/lisp/bs.el b/lisp/bs.el index d0b929b2d85..a42b22e8436 100644 --- a/lisp/bs.el +++ b/lisp/bs.el @@ -999,7 +999,6 @@ Uses function `vc-toggle-read-only'." (defun bs--up () "Move cursor vertically up one line. If on top of buffer list go to last line." - (interactive "p") (if (> (count-lines 1 (point)) bs-header-lines-length) (forward-line -1) (goto-char (point-max)) |