Function: ld-script-mode

ld-script-mode is an autoloaded, interactive and byte-compiled function defined in ld-script.el.gz.

Signature

(ld-script-mode)

Documentation

A major mode to edit GNU ld script files.

In addition to any hooks its parent mode prog-mode might have run, this mode runs the hook ld-script-mode-hook, as the final or penultimate step during initialization.

Key Bindings

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)))