Function: dcl-beginning-of-command
dcl-beginning-of-command is an interactive and byte-compiled function
defined in dcl-mode.el.gz.
Signature
(dcl-beginning-of-command)
Documentation
Move point to beginning of current command.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
;;;-------------------------------------------------------------------------
(defun dcl-beginning-of-command ()
"Move point to beginning of current command."
(interactive)
(let ((type (dcl-get-line-type)))
(if (and (eq type '$)
(bolp))
() ; already in the correct position
(dcl-beginning-of-statement))))