Function: c-min-property-position
c-min-property-position is a macro defined in cc-defs.el.gz.
Signature
(c-min-property-position FROM TO PROPERTY)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defmacro c-min-property-position (from to property)
;; Return the first position in the range [FROM to) where the text property
;; PROPERTY is set, or `most-positive-fixnum' if there is no such position.
;; PROPERTY should be a quoted constant.
(declare (debug t))
`(let ((-from- ,from) (-to- ,to) pos)
(cond
((and (< -from- -to-)
(get-text-property -from- ,property))
-from-)
((< (setq pos (next-single-property-change -from- ,property nil -to-))
-to-)
pos)
(most-positive-fixnum))))