Function: dcl-command-p
dcl-command-p is a byte-compiled function defined in dcl-mode.el.gz.
Signature
(dcl-command-p)
Documentation
Check if point is on a command line.
Return t if point is on a command line or a continuation line, otherwise return nil.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
;;;-------------------------------------------------------------------------
(defun dcl-command-p ()
"Check if point is on a command line.
Return t if point is on a command line or a continuation line,
otherwise return nil."
(let ((type (dcl-get-line-type)))
(or (eq type '$)
(eq type '-))))