Function: makefile-forward-after-target-colon

makefile-forward-after-target-colon is a byte-compiled function defined in make-mode.el.gz.

Signature

(makefile-forward-after-target-colon)

Documentation

Move point forward after inserting the terminating colon of a target.

This acts according to the value of makefile-tab-after-target-colon.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
(defun makefile-forward-after-target-colon ()
  "Move point forward after inserting the terminating colon of a target.
This acts according to the value of `makefile-tab-after-target-colon'."
  (if makefile-tab-after-target-colon
      (insert "\t")
    (insert " ")))