Function: semantic-ctxt-current-mode-default

semantic-ctxt-current-mode-default is a byte-compiled function defined in ctxt.el.gz.

Signature

(semantic-ctxt-current-mode-default &optional POINT)

Documentation

Return the major mode active at POINT.

POINT defaults to the value of point in current buffer. This default implementation returns the current major mode.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/ctxt.el.gz
(defun semantic-ctxt-current-mode-default (&optional _point)
  "Return the major mode active at POINT.
POINT defaults to the value of point in current buffer.
This default implementation returns the current major mode."
  major-mode)