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)

Documentation

Go forward to the end of the expression, but not beyond LIM.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-forward-to-end-of-expr (&optional lim)
  "Go forward to the end of the expression, but not beyond LIM."
  (condition-case nil
      (progn
	(while (and (< (point) (or lim (point-max)))
		    (not (cperl-at-end-of-expr)))
	  (forward-sexp 1)))
    (error nil)))