Function: makefile-browser-insert-selection

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

This command is obsolete since 30.1.

Signature

(makefile-browser-insert-selection)

Documentation

Insert all selected targets and/or macros in the makefile buffer.

Insertion takes place at point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
(defun makefile-browser-insert-selection ()
  "Insert all selected targets and/or macros in the makefile buffer.
Insertion takes place at point."
  (declare (obsolete nil "30.1"))
  (interactive)
  (save-excursion
    (goto-char (point-min))
    (let ((current-line 1))
      (while (not (eobp))
	(if (makefile-browser-get-state-for-line current-line)
	    (makefile-browser-send-this-line-item))
	(forward-line 1)
	(setq current-line (1+ current-line))))))