Function: semantic-up-context-default
semantic-up-context-default is a byte-compiled function defined in
ctxt.el.gz.
Signature
(semantic-up-context-default)
Documentation
Move the point up and out one context level.
Works with languages that use parenthetical grouping.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/ctxt.el.gz
(defun semantic-up-context-default ()
"Move the point up and out one context level.
Works with languages that use parenthetical grouping."
;; By default, assume that the language uses some form of parenthetical
;; do dads for their context.
(condition-case nil
(progn
(up-list -1)
nil)
(error t)))