Function: cperl-beginning-of-property
cperl-beginning-of-property is a byte-compiled function defined in
cperl-mode.el.gz.
Signature
(cperl-beginning-of-property P PROP &optional LIM)
Documentation
Given that P has a property PROP, find where the property start.
Will not look before LIM.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-beginning-of-property (p prop &optional lim)
"Given that P has a property PROP, find where the property start.
Will not look before LIM."
;; XXXX What to do at point-max???
(or (previous-single-property-change (cperl-1+ p) prop lim)
(point-min))
;; (cond ((eq p (point-min))
;; p)
;; ((and lim (<= p lim))
;; p)
;; ((not (get-text-property (1- p) prop))
;; p)
;; (t (or (previous-single-property-change p look-prop lim)
;; (point-min))))
)