Function: makefile-browser-quit
makefile-browser-quit is an interactive and byte-compiled function
defined in make-mode.el.gz.
Signature
(makefile-browser-quit)
Documentation
Leave the browser and return to the makefile buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
;;;
;;; Quitting the browser (returns to client buffer)
;;;
(defun makefile-browser-quit ()
"Leave the browser and return to the makefile buffer."
(interactive)
(let ((my-client makefile-browser-client))
(setq makefile-browser-client nil) ; we quit, so NO client!
(set-buffer-modified-p nil)
(quit-window t)
(pop-to-buffer my-client)))