Function: dcl-beginning-of-command-p
dcl-beginning-of-command-p is a byte-compiled function defined in
dcl-mode.el.gz.
Signature
(dcl-beginning-of-command-p)
Documentation
Return t if point is at the beginning of a command.
Otherwise return nil.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
;;; *** Unsorted stuff *****************************************************
;;;-------------------------------------------------------------------------
(defun dcl-beginning-of-command-p ()
"Return t if point is at the beginning of a command.
Otherwise return nil."
(and (bolp)
(eq (dcl-get-line-type) '$)))