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