Function: bs--up

bs--up is a byte-compiled function defined in bs.el.gz.

Signature

(bs--up)

Documentation

Move point vertically up one line.

If on top of buffer list go to last line.

Source Code

;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs--up ()
  "Move point vertically up one line.
If on top of buffer list go to last line."
  (if (> (count-lines (point-min) (point)) bs-header-lines-length)
      (forward-line -1)
    (goto-char (point-max))
    (beginning-of-line)
    (recenter -1)))