Function: conf-ppd-mode

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

Signature

(conf-ppd-mode)

Documentation

Conf Mode starter for Adobe/CUPS PPD files.

Comments start with *% and "assignments" are with :. For details see conf-mode. Example:

*% Conf mode font-locks this right with M-x conf-ppd-mode (conf-ppd-mode) (PPD)

*DefaultTransfer: Null
*Transfer Null.Inverse: "{ 1 exch sub }"

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

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/conf-mode.el.gz
;;;###autoload
(define-derived-mode conf-ppd-mode conf-colon-mode "Conf[PPD]"
  "Conf Mode starter for Adobe/CUPS PPD files.
Comments start with `*%' and \"assignments\" are with `:'.
For details see `conf-mode'.  Example:

*% Conf mode font-locks this right with \\[conf-ppd-mode] (PPD)

*DefaultTransfer: Null
*Transfer Null.Inverse: \"{ 1 exch sub }\""
  (conf-mode-initialize "*%")
  ;; no sections, they match within PostScript code
  (setq imenu-generic-expression (list (car imenu-generic-expression))))