Function: semantic-beginning-of-context-default

semantic-beginning-of-context-default is a byte-compiled function defined in ctxt.el.gz.

Signature

(semantic-beginning-of-context-default &optional POINT)

Documentation

Move POINT to the beginning of the current context via parenthesis.

Return non-nil if there is no upper context.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/ctxt.el.gz
(defun semantic-beginning-of-context-default (&optional point)
  "Move POINT to the beginning of the current context via parenthesis.
Return non-nil if there is no upper context."
  (if point (goto-char point))
  (if (semantic-up-context)
      t
    (forward-char 1)
    nil))