Function: semantic-with-buffer-narrowed-to-tag
semantic-with-buffer-narrowed-to-tag is a macro defined in tag.el.gz.
Signature
(semantic-with-buffer-narrowed-to-tag TAG &rest BODY)
Documentation
Narrow to TAG, and execute BODY.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defmacro semantic-with-buffer-narrowed-to-tag (tag &rest body)
"Narrow to TAG, and execute BODY."
(declare (indent 1) (debug t))
`(save-restriction
(semantic-narrow-to-tag ,tag)
,@body))