Function: senator-fold-tag

senator-fold-tag is an interactive and byte-compiled function defined in senator.el.gz.

Signature

(senator-fold-tag &optional TAG)

Documentation

Fold the current TAG.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/senator.el.gz
;;; Folding
;;
;; Use new folding state.  It might be wise to extend the idea
;; of folding for hiding all but this, or show all children, etc.

(defun senator-fold-tag (&optional tag)
  "Fold the current TAG."
  (interactive)
  (semantic-set-tag-folded (or tag (semantic-current-tag)) t))