summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2013-10-27 08:28:43 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2013-10-27 08:28:43 (GMT)
commit2fb0507a00743b52c4e5d679639bfb6cbc8b69b6 (patch)
tree75f056c23c16726705b94e99059d89662b89d58d /generic/tcl.h
parentd08906b28d47e6097aefc07830024196336bad0f (diff)
downloadtcl-2fb0507a00743b52c4e5d679639bfb6cbc8b69b6.zip
tcl-2fb0507a00743b52c4e5d679639bfb6cbc8b69b6.tar.gz
tcl-2fb0507a00743b52c4e5d679639bfb6cbc8b69b6.tar.bz2
[53a917d6c9]: Correction to macro for determining how to deprecate things.
Thanks to Raphael Kubo da Costa <rakuco@FreeBSD.org> for the patch.
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 1b120fb..ab54078 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -168,7 +168,7 @@ extern "C" {
*/
#if defined(__GNUC__) && ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)))
-# if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC__MINOR__ >= 5))
+# if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5))
# define TCL_DEPRECATED_API(msg) __attribute__ ((__deprecated__ (msg)))
# else
# define TCL_DEPRECATED_API(msg) __attribute__ ((__deprecated__))