summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2012-11-29 17:45:20 (GMT)
committerdgp <dgp@users.sourceforge.net>2012-11-29 17:45:20 (GMT)
commit74628e76c19dab883bb362fababc98e9029d47e3 (patch)
treefa1ec9b927544b0acbd9c57b7155170adde954fa
parent2e19edb3f50478006b2377ebbc196889331ef53c (diff)
downloadtcl-74628e76c19dab883bb362fababc98e9029d47e3.zip
tcl-74628e76c19dab883bb362fababc98e9029d47e3.tar.gz
tcl-74628e76c19dab883bb362fababc98e9029d47e3.tar.bz2
Remove STRINGIFY and JOIN utility macros. Tcl doesn't use them.
And Tcl doesn't need to be in the utility macro supply business. If an extension needs these, let them define them.
-rw-r--r--generic/tcl.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index b9ff28c..1926dc7 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -90,20 +90,6 @@ extern "C" {
#endif /* __WIN32__ */
/*
- * Utility macros: STRINGIFY takes an argument and wraps it in "" (double
- * quotation marks), JOIN joins two arguments.
- */
-
-#ifndef STRINGIFY
-# define STRINGIFY(x) STRINGIFY1(x)
-# define STRINGIFY1(x) #x
-#endif
-#ifndef JOIN
-# define JOIN(a,b) JOIN1(a,b)
-# define JOIN1(a,b) a##b
-#endif
-
-/*
* A special definition used to allow this header file to be included from
* windows resource files so that they can obtain version information.
* RC_INVOKED is defined by default by the windows RC tool.