Function: c-previous-single-property-change
c-previous-single-property-change is a macro defined in cc-defs.el.gz.
Signature
(c-previous-single-property-change POSITION PROP &optional OBJECT LIMIT)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defmacro c-previous-single-property-change (position prop &optional object limit)
;; See the doc string for either of the defuns expanded to.
(declare (debug t))
(if (and c-use-extents
(fboundp 'previous-single-char-property-change))
;; XEmacs >= 2005-01-25
`(previous-single-char-property-change ,position ,prop ,object ,limit)
;; Emacs and earlier XEmacs
`(previous-single-property-change ,position ,prop ,object ,limit)))