Function: srecode-mode-table-p

srecode-mode-table-p is a byte-compiled function defined in table.el.gz.

Signature

(srecode-mode-table-p OBJ)

Documentation

Return non-nil if OBJ is an object of type srecode-mode-table(var)/srecode-mode-table(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/table.el.gz
(defclass srecode-mode-table (eieio-instance-tracker)
   ((tracking-symbol :initform 'srecode-mode-table-list)
    (major-mode :initarg :major-mode
		:documentation
		"Table of template tables for this major-mode.")
    (modetables :initarg :modetables
		:documentation
		"All that tables unique to this major mode.")
    (tables :initarg :tables
	    :documentation
	    "All the tables that can be used for this major mode.")
    )
   "Track template tables for a particular major mode.
Tracks all the template-tables for a specific major mode.")