]> git.eshelyaron.com Git - emacs.git/commitdiff
Synchronize cedet/semantic with Emacs.
authorxscript <xscript@users.sourceforge.net>
Sun, 15 May 2011 20:16:47 +0000 (22:16 +0200)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 15:59:25 +0000 (17:59 +0200)
test/manual/cedet/cedet/semantic/tag-write.el [new file with mode: 0644]

diff --git a/test/manual/cedet/cedet/semantic/tag-write.el b/test/manual/cedet/cedet/semantic/tag-write.el
new file mode 100644 (file)
index 0000000..050b204
--- /dev/null
@@ -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))))