Function: semanticdb-get-buffer

semanticdb-get-buffer is a byte-compiled function defined in db.el.gz.

Signature

(semanticdb-get-buffer OBJ)

Documentation

Return a buffer associated with semanticdb table OBJ.

If the buffer is not in memory, load it with find-file-noselect.

Implementations

(semanticdb-get-buffer (OBJ semanticdb-table)) in `semantic/db.el'.

Return a buffer associated with OBJ. If the buffer is in memory, return that buffer. If the buffer is not in memory, load it with `find-file-noselect'.

(semanticdb-get-buffer OBJ) in `semantic/db.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/db.el.gz
(cl-defgeneric semanticdb-get-buffer (_obj)
  "Return a buffer associated with semanticdb table OBJ.
If the buffer is not in memory, load it with `find-file-noselect'."
  nil)