Function: idlwave-end-of-statement
idlwave-end-of-statement is an interactive and byte-compiled function
defined in idlwave.el.gz.
Signature
(idlwave-end-of-statement)
Documentation
Move point to the end of the current IDL statement.
If not in a statement just moves to end of line. Returns position.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-end-of-statement ()
"Move point to the end of the current IDL statement.
If not in a statement just moves to end of line. Returns position."
(interactive)
(while (and (idlwave-is-continuation-line)
(= (forward-line 1) 0))
(while (and (idlwave-is-comment-or-empty-line)
(= (forward-line 1) 0))))
(end-of-line)
(point))