Function: semantic-collector-last-prefix=

semantic-collector-last-prefix= is a byte-compiled function defined in complete.el.gz.

Signature

(semantic-collector-last-prefix= ARG &rest ARGS)

Implementations

((obj semantic-collector-abstract) last-prefix) in `semantic/complete.el'.

Return non-nil if OBJ's prefix matches PREFIX.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(cl-defmethod semantic-collector-last-prefix= ((obj semantic-collector-abstract)
					    last-prefix)
  "Return non-nil if OBJ's prefix matches PREFIX."
  (and (slot-boundp obj 'last-prefix)
       (string= (oref obj last-prefix) last-prefix)))