Function: senator-fold-tag-toggle

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

Signature

(senator-fold-tag-toggle &optional TAG)

Documentation

Fold the current TAG.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/senator.el.gz
(defun senator-fold-tag-toggle (&optional tag)
  "Fold the current TAG."
  (interactive)
  (let ((tag (or tag (semantic-current-tag))))
    (if (semantic-tag-folded-p tag)
        (senator-unfold-tag tag)
      (senator-fold-tag tag))))