Variable: makefile-imake-mode-hook

makefile-imake-mode-hook is a variable defined in make-mode.el.gz.

Value

nil

Documentation

Hook run after entering makefile-imake-mode.

No problems result if this variable is not bound. add-hook automatically binds it. (This is true for all hook variables.)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
;;;###autoload
(define-derived-mode makefile-imake-mode makefile-mode "Imakefile"
  "An adapted `makefile-mode' that knows about imake."
  :syntax-table makefile-imake-mode-syntax-table
  (setq-local syntax-propertize-function nil)
  (setq font-lock-defaults
        `(makefile-imake-font-lock-keywords ,@(cdr font-lock-defaults)))
  (setq-local comment-start "XCOMM")
  (setq-local comment-start-skip "XCOMM[ \t]*"))