summaryrefslogtreecommitdiffstats
path: root/mac/tclMacPort.h
diff options
context:
space:
mode:
authordas <das@noemail.net>2002-06-05 11:59:17 (GMT)
committerdas <das@noemail.net>2002-06-05 11:59:17 (GMT)
commit2eb4163aa43f3c7630004f359c5a2018e6874c6b (patch)
treee1fd79f317196368a93f0b09f69169f56c39fc49 /mac/tclMacPort.h
parentb2df3fcfecc93394c6adfa476ecb970724a9b9aa (diff)
downloadtcl-2eb4163aa43f3c7630004f359c5a2018e6874c6b.zip
tcl-2eb4163aa43f3c7630004f359c5a2018e6874c6b.tar.gz
tcl-2eb4163aa43f3c7630004f359c5a2018e6874c6b.tar.bz2
* generic/tclFileName.c (TclGlob): mac specific fix to
recent changes in 'glob -tails' handling. * mac/tclMacPort.h: * mac/tclMacChan.c: fixed TIP#91 bustage. * mac/tclMacResource.c (Tcl_MacConvertTextResource): added utf conversion of text resource contents. * tests/macFCmd.test (macFCmd-1.2): allow CWIE creator. FossilOrigin-Name: a996da49e4d12db666e2ec8f299e2a27724925a9
Diffstat (limited to 'mac/tclMacPort.h')
-rw-r--r--mac/tclMacPort.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/mac/tclMacPort.h b/mac/tclMacPort.h
index abc30aa..5df25b7 100644
--- a/mac/tclMacPort.h
+++ b/mac/tclMacPort.h
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclMacPort.h,v 1.14 2001/11/23 01:28:12 das Exp $
+ * RCS: @(#) $Id: tclMacPort.h,v 1.15 2002/06/05 11:59:44 das Exp $
*/
@@ -29,6 +29,15 @@
*/
#include "tclErrno.h"
+
+#ifndef EOVERFLOW
+# ifdef EFBIG
+# define EOVERFLOW EFBIG /* The object couldn't fit in the datatype */
+# else /* !EFBIG */
+# define EOVERFLOW EINVAL /* Better than nothing! */
+# endif /* EFBIG */
+#endif /* !EOVERFLOW */
+
#include <float.h>
#ifdef THINK_C