Function: cperl-fontify-update-bad

cperl-fontify-update-bad is a byte-compiled function defined in cperl-mode.el.gz.

Signature

(cperl-fontify-update-bad END)

Documentation

Process postponed fontification to end of buffer, ignoring END.

This function is no longer needed.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
  nil)					; Do not iterate

(defun cperl-fontify-update-bad (end)
  "Process postponed fontification to end of buffer, ignoring END.
This function is no longer needed."
  ;; Since fontification happens with different region than syntaxification,
  ;; do to the end of buffer, not to END
  ;; likewise, start earlier if needed
  (let* ((pos (point)) (prop (get-text-property pos 'cperl-postpone)) posend)
    (if prop
	(setq pos (or (cperl-beginning-of-property
		       (cperl-1+ pos) 'cperl-postpone)
		      (point-min))))
    (while (< pos end)
      (setq posend (next-single-property-change pos 'cperl-postpone))
      (and prop (put-text-property pos posend (car prop) (cdr prop)))
      (setq pos posend)
      (setq prop (get-text-property pos 'cperl-postpone))))
  nil)					; Do not iterate