Function: makefile-browser-previous-line
makefile-browser-previous-line is an interactive and byte-compiled
function defined in make-mode.el.gz.
This command is obsolete since 30.1.
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."
(declare (obsolete nil "30.1"))
(interactive)
(unless (makefile-first-line-p)
(forward-line -1)
(forward-char makefile-browser-cursor-column)))