Function: dcl-end-of-statement

dcl-end-of-statement is an interactive and byte-compiled function defined in dcl-mode.el.gz.

Signature

(dcl-end-of-statement)

Documentation

Go to the end of the next or current command line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/dcl-mode.el.gz
;;;-------------------------------------------------------------------------
(defun dcl-end-of-statement ()
  "Go to the end of the next or current command line."
  (interactive)
  (if (or (dcl-end-of-command-p)
	  (dcl-beginning-of-command-p)
	  (not (dcl-command-p)))
      ()
    (dcl-beginning-of-statement))
  (re-search-forward dcl-command-regexp nil t))