Function: makefile-browser-previous-line

makefile-browser-previous-line is an interactive and byte-compiled function defined in make-mode.el.gz.

Signature

(makefile-browser-previous-line)

Documentation

Move the browser selection cursor to the previous line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
(defun makefile-browser-previous-line ()
  "Move the browser selection cursor to the previous line."
  (interactive)
  (if (not (makefile-first-line-p))
      (progn
	(forward-line -1)
	(forward-char makefile-browser-cursor-column))))