Function: makefile-browser-insert-continuation
makefile-browser-insert-continuation is an interactive and
byte-compiled function defined in make-mode.el.gz.
Signature
(makefile-browser-insert-continuation)
Documentation
Insert a makefile continuation.
In the makefile buffer, go to (end-of-line), insert a \
character, insert a new blank line, go to that line and indent by one TAB.
This is most useful in the process of creating continued lines when copying
large dependencies from the browser to the client buffer.
(point) advances accordingly in the client buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
;;;
;;; Making insertions into the client buffer
;;;
(defun makefile-browser-insert-continuation ()
"Insert a makefile continuation.
In the makefile buffer, go to (end-of-line), insert a `\\'
character, insert a new blank line, go to that line and indent by one TAB.
This is most useful in the process of creating continued lines when copying
large dependencies from the browser to the client buffer.
\(point) advances accordingly in the client buffer."
(interactive)
(with-current-buffer makefile-browser-client
(end-of-line)
(insert "\\\n\t")))