Variable: decipher-font-lock-keywords

decipher-font-lock-keywords is a variable defined in decipher.el.gz.

Value

(("^:.*" . font-lock-keyword-face) ("^>.*" . font-lock-string-face)
 ("^%!.*" . font-lock-constant-face) ("^%.*" . font-lock-comment-face)
 ("\\`(\\([a-z]+\\) +\\([A-Z]+\\)" (1 font-lock-string-face)
  (2 font-lock-keyword-face))
 ("^)\\([A-Z ]+\\)\\([a-z ]+\\)" (1 font-lock-keyword-face)
  (2 font-lock-string-face)))

Documentation

Font Lock keywords for Decipher mode.

Source Code

;; Defined in /usr/src/emacs/lisp/play/decipher.el.gz
;; End of user modifiable variables
;;--------------------------------------------------------------------

(defvar decipher-font-lock-keywords
  '(("^:.*"  . font-lock-keyword-face)
    ("^>.*"  . font-lock-string-face)
    ("^%!.*" . font-lock-constant-face)
    ("^%.*"  . font-lock-comment-face)
    ("\\`(\\([a-z]+\\) +\\([A-Z]+\\)"
     (1 font-lock-string-face)
     (2 font-lock-keyword-face))
    ("^)\\([A-Z ]+\\)\\([a-z ]+\\)"
     (1 font-lock-keyword-face)
     (2 font-lock-string-face)))
  "Font Lock keywords for Decipher mode.")