Tcl Source Code

Artifact [708750a825]
Login

Artifact 708750a8257b4037f30163a1994d62a9984e45a3:

Attachment "tcl.h-gnuc_minor.diff" to ticket [53a917d6c9] added by rakuco 2013-10-26 23:32:09. (unpublished)
Index: generic/tcl.h
==================================================================
--- generic/tcl.h
+++ generic/tcl.h
@@ -166,11 +166,11 @@
  * Used to make TIP 330/336 generate moans even if people use the
  * compatibility macros. Change your code, guys! We won't support you forever.
  */
 
 #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__))
 #   endif
 #else