Function: dcl-beginning-of-statement
dcl-beginning-of-statement is an interactive and byte-compiled
function defined in dcl-mode.el.gz.
Signature
(dcl-beginning-of-statement)
Documentation
Go to the beginning of the preceding or current command line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
;;; *** Movement commands ***************************************************
;;;-------------------------------------------------------------------------
(defun dcl-beginning-of-statement ()
"Go to the beginning of the preceding or current command line."
(interactive)
(re-search-backward dcl-command-regexp nil t))