Variable: ld-script-mode-hook

ld-script-mode-hook is a variable defined in ld-script.el.gz.

Value

nil

Documentation

Hook run after entering LD-Script 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/ld-script.el.gz
;;;###autoload
(define-derived-mode ld-script-mode prog-mode "LD-Script"
   "A major mode to edit GNU ld script files."
  (setq-local comment-start "/* ")
  (setq-local comment-end   " */")
  (setq-local font-lock-defaults '(ld-script-font-lock-keywords nil)))