Function: makefile-browser-next-line

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

Signature

(makefile-browser-next-line)

Documentation

Move the browser selection cursor to the next line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
;;;
;;; Moving up and down in the browser
;;;

(defun makefile-browser-next-line ()
  "Move the browser selection cursor to the next line."
  (interactive)
  (if (not (makefile-last-line-p))
      (progn
	(forward-line 1)
	(forward-char makefile-browser-cursor-column))))