summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordas <das>2007-08-11 03:12:07 (GMT)
committerdas <das>2007-08-11 03:12:07 (GMT)
commit190db6374756ef363310051446861a43d3525d94 (patch)
tree07146ec98620f797b7021c554949a03e74be49e8 /macosx
parent7b686b16154a5af966cc5503fd65c94e373b4239 (diff)
downloadtcl-190db6374756ef363310051446861a43d3525d94.zip
tcl-190db6374756ef363310051446861a43d3525d94.tar.gz
tcl-190db6374756ef363310051446861a43d3525d94.tar.bz2
fix missing preprocessor \ line continuation
Diffstat (limited to 'macosx')
-rw-r--r--macosx/tclMacOSXNotify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/tclMacOSXNotify.c b/macosx/tclMacOSXNotify.c
index e6ae7b3..2f9c62a 100644
--- a/macosx/tclMacOSXNotify.c
+++ b/macosx/tclMacOSXNotify.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclMacOSXNotify.c,v 1.1.2.13 2007/06/23 00:23:42 das Exp $
+ * RCS: @(#) $Id: tclMacOSXNotify.c,v 1.1.2.14 2007/08/11 03:12:07 das Exp $
*/
#include "tclInt.h"
@@ -294,7 +294,7 @@ extern int pthread_atfork(void (*prepare)(void), void (*parent)(void),
* On 64bit Darwin 9 and later, it is not possible to call CoreFoundation after
* a fork.
*/
-#if !defined(MAC_OS_X_VERSION_MIN_REQUIRED) ||
+#if !defined(MAC_OS_X_VERSION_MIN_REQUIRED) || \
MAC_OS_X_VERSION_MIN_REQUIRED < 1050
MODULE_SCOPE long tclMacOSXDarwinRelease;
#define noCFafterFork (tclMacOSXDarwinRelease >= 9)