From: xscript Date: Sun, 15 May 2011 20:16:47 +0000 (+0200) Subject: Synchronize cedet/semantic with Emacs. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=216e4f497bedbd21600a15958acb9f32985c1c30;p=emacs.git Synchronize cedet/semantic with Emacs. --- diff --git a/test/manual/cedet/cedet/semantic/tag-write.el b/test/manual/cedet/cedet/semantic/tag-write.el new file mode 100644 index 00000000000..050b2043d4e --- /dev/null +++ b/test/manual/cedet/cedet/semantic/tag-write.el @@ -0,0 +1,11 @@ +(defun semantic-tag-write-test () + "Test the semantic tag writer against the tag under point." + (interactive) + (with-output-to-temp-buffer "*Tag Write Test*" + (semantic-tag-write-one-tag (semantic-current-tag)))) + +(defun semantic-tag-write-list-test () + "Test the semantic tag writer against the tag under point." + (interactive) + (with-output-to-temp-buffer "*Tag Write Test*" + (semantic-tag-write-tag-list (semantic-fetch-tags))))