Function: idlwave-end-of-statement0

idlwave-end-of-statement0 is an interactive and byte-compiled function defined in idlwave.el.gz.

Signature

(idlwave-end-of-statement0)

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/obsolete/idlwave.el.gz
(defun idlwave-end-of-statement0 ()
  "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)))
  (end-of-line)
  (point))