Tcl Source Code

Check-in [b7d07f415c]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:revert accidental part of previous commit
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: b7d07f415cc6889d499be15e707942500d108d69
User & Date: jan.nijtmans 2013-11-22 13:21:52
Context
2013-12-26
15:21
remove uninitialized variable and the code that used it Closed-Leaf check-in: f88bbf5abb user: mig tags: mistake
2013-11-24
18:35
[a122627849] Improve stack trace from parray on not-array. check-in: 02ef6fa87e user: dkf tags: trunk
2013-11-22
13:21
revert accidental part of previous commit check-in: b7d07f415c user: jan.nijtmans tags: trunk
13:17
Cygwin: Fix conflicting definition with _mingw_stat64.h, if included together with <tcl.h> check-in: 5dac33e7ef user: jan.nijtmans tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/regcustom.h.

70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#undef __REG_NOFRONT
#endif
#ifdef __REG_NOCHAR
#undef __REG_NOCHAR
#endif
/* Interface types */
#define	__REG_WIDE_T	Tcl_UniChar
#ifdef __CYGWIN__
#define	__REG_REGOFF_T	int 	/* Not really right, but good enough... */
#else
#define	__REG_REGOFF_T	long	/* Not really right, but good enough... */
#endif
#define	__REG_VOID_T	void
#define	__REG_CONST	const
/* Names and declarations */
#define	__REG_WIDE_COMPILE	TclReComp
#define	__REG_WIDE_EXEC		TclReExec
#define	__REG_NOFRONT		/* Don't want regcomp() and regexec() */
#define	__REG_NOCHAR		/* Or the char versions */







<
<
<

<







70
71
72
73
74
75
76



77

78
79
80
81
82
83
84
#undef __REG_NOFRONT
#endif
#ifdef __REG_NOCHAR
#undef __REG_NOCHAR
#endif
/* Interface types */
#define	__REG_WIDE_T	Tcl_UniChar



#define	__REG_REGOFF_T	long	/* Not really right, but good enough... */

#define	__REG_VOID_T	void
#define	__REG_CONST	const
/* Names and declarations */
#define	__REG_WIDE_COMPILE	TclReComp
#define	__REG_WIDE_EXEC		TclReExec
#define	__REG_NOFRONT		/* Don't want regcomp() and regexec() */
#define	__REG_NOCHAR		/* Or the char versions */

Changes to generic/regex.h.

102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#undef __REG_NOFRONT
#endif
#ifdef __REG_NOCHAR
#undef __REG_NOCHAR
#endif
/* interface types */
#define	__REG_WIDE_T	Tcl_UniChar
#ifdef __CYGWIN__
#define	__REG_REGOFF_T	int 	/* not really right, but good enough... */
#else
#define	__REG_REGOFF_T	long	/* not really right, but good enough... */
#endif
#define	__REG_VOID_T	void
#define	__REG_CONST	const
/* names and declarations */
#define	__REG_WIDE_COMPILE	TclReComp
#define	__REG_WIDE_EXEC		TclReExec
#define	__REG_NOFRONT		/* don't want regcomp() and regexec() */
#define	__REG_NOCHAR		/* or the char versions */







<
<
<

<







102
103
104
105
106
107
108



109

110
111
112
113
114
115
116
#undef __REG_NOFRONT
#endif
#ifdef __REG_NOCHAR
#undef __REG_NOCHAR
#endif
/* interface types */
#define	__REG_WIDE_T	Tcl_UniChar



#define	__REG_REGOFF_T	long	/* not really right, but good enough... */

#define	__REG_VOID_T	void
#define	__REG_CONST	const
/* names and declarations */
#define	__REG_WIDE_COMPILE	TclReComp
#define	__REG_WIDE_EXEC		TclReExec
#define	__REG_NOFRONT		/* don't want regcomp() and regexec() */
#define	__REG_NOCHAR		/* or the char versions */