Function: srecode-calculate-context-default
srecode-calculate-context-default is a byte-compiled function defined
in ctxt.el.gz.
Signature
(srecode-calculate-context-default)
Documentation
Generic method for calculating a context for srecode.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/ctxt.el.gz
(defun srecode-calculate-context-default ()
"Generic method for calculating a context for srecode."
(if (= (point-min) (point-max))
(list "file" "empty")
(semantic-fetch-tags)
(let ((ct (semantic-find-tag-by-overlay))
)
(cond ((or (not ct)
;; Ok, below is a bit C specific.
(and (eq (semantic-tag-class (car ct)) 'type)
(string= (semantic-tag-type (car ct)) "namespace")))
(cons "declaration"
(or (srecode-calculate-context-font-lock)
(srecode-calculate-nearby-things)
))
)
((eq (semantic-tag-class (car ct)) 'function)
(cons "code" (srecode-calculate-context-font-lock))
)
((eq (semantic-tag-class (car ct)) 'type) ; We know not namespace
(cons "classdecl"
(or (srecode-calculate-context-font-lock)
(srecode-calculate-nearby-things)))
)
((and (car (cdr ct))
(eq (semantic-tag-class (car (cdr ct))) 'type))
(list "classdecl"
(symbol-name (semantic-tag-class (car ct))))
)
)
)))