Variable: dcl-command-regexp

dcl-command-regexp is a customizable variable defined in dcl-mode.el.gz.

Value

"^\\$\\(.*-[    ]*\\(!.*\\)*\n\\)*.*\\(\".*\\(\"\".*\\)*\"\\)*"

Documentation

Regular expression describing a DCL command line.

A line starting with $, optionally followed by continuation lines, followed by the end of the command line. A continuation line is any characters followed by -, optionally followed by a comment, followed by a newline.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
(defcustom dcl-command-regexp
  "^\\$\\(.*-[ \t]*\\(!.*\\)*\n\\)*.*\\(\".*\\(\"\".*\\)*\"\\)*"
  "Regular expression describing a DCL command line.
A line starting with $, optionally followed by continuation lines,
followed by the end of the command line.
A continuation line is any characters followed by `-',
optionally followed by a comment, followed by a newline."
  :type 'regexp)