Function: cperl-forward-to-end-of-expr
cperl-forward-to-end-of-expr is a byte-compiled function defined in
cperl-mode.el.gz.
Signature
(cperl-forward-to-end-of-expr &optional LIM)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-forward-to-end-of-expr (&optional lim)
(condition-case nil
(progn
(while (and (< (point) (or lim (point-max)))
(not (cperl-at-end-of-expr)))
(forward-sexp 1)))
(error nil)))