Variable: dcl-option-alist

dcl-option-alist is a variable defined in dcl-mode.el.gz.

Value

((dcl-basic-offset dcl-option-value-basic)
 (dcl-continuation-offset curval)
 (dcl-margin-offset dcl-option-value-margin-offset)
 (dcl-margin-label-offset dcl-option-value-offset)
 (dcl-comment-line-regexp dcl-option-value-comment-line)
 (dcl-block-begin-regexp curval) (dcl-block-end-regexp curval)
 (dcl-tab-always-indent toggle) (dcl-electric-characters toggle)
 (dcl-electric-reindent-regexps curval) (dcl-tempo-comma curval)
 (dcl-tempo-left-paren curval) (dcl-tempo-right-paren curval)
 (dcl-calc-command-indent-function curval)
 (dcl-calc-cont-indent-function curval) (comment-start curval)
 (comment-start-skip curval))

Documentation

Options and default values for dcl-set-option.

An alist with option variables and functions or keywords to get a default value for the option.

The keywords are:
curval the current value
toggle the opposite of the current value (for t/nil)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
(defvar dcl-option-alist
  '((dcl-basic-offset dcl-option-value-basic)
    (dcl-continuation-offset curval)
    (dcl-margin-offset dcl-option-value-margin-offset)
    (dcl-margin-label-offset dcl-option-value-offset)
    (dcl-comment-line-regexp dcl-option-value-comment-line)
    (dcl-block-begin-regexp curval)
    (dcl-block-end-regexp curval)
    (dcl-tab-always-indent toggle)
    (dcl-electric-characters toggle)
    (dcl-electric-reindent-regexps curval)
    (dcl-tempo-comma curval)
    (dcl-tempo-left-paren curval)
    (dcl-tempo-right-paren curval)
    (dcl-calc-command-indent-function curval)
    (dcl-calc-cont-indent-function curval)
    (comment-start curval)
    (comment-start-skip curval)
    )
  "Options and default values for `dcl-set-option'.

An alist with option variables and functions or keywords to get a
default value for the option.

The keywords are:
curval       the current value
toggle       the opposite of the current value (for t/nil)")