Function: semantic-lex-spp-get-overlay

semantic-lex-spp-get-overlay is a byte-compiled function defined in lex-spp.el.gz.

Signature

(semantic-lex-spp-get-overlay &optional POINT)

Documentation

Return first overlay which has a 'semantic-spp property.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex-spp.el.gz
(defun semantic-lex-spp-get-overlay (&optional point)
  "Return first overlay which has a 'semantic-spp property."
  (let ((overlays (overlays-at (or point (point)))))
    (while (and overlays
		(null (overlay-get (car overlays) 'semantic-spp)))
      (setq overlays (cdr overlays)))
    (car-safe overlays)))