Function: makefile-insert-macro-ref

makefile-insert-macro-ref is an interactive and byte-compiled function defined in make-mode.el.gz.

Signature

(makefile-insert-macro-ref MACRO-NAME)

Documentation

Complete on a list of known macros, then insert complete ref at point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
(defun makefile-insert-macro-ref (macro-name)
  "Complete on a list of known macros, then insert complete ref at point."
  (interactive
   (list
    (progn
      (makefile-pickup-macros)
      (completing-read "Refer to macro: " makefile-macro-table nil nil nil))))
  (makefile-do-macro-insertion macro-name))