diff options
author | hobbs <hobbs> | 2000-01-11 22:08:59 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-01-11 22:08:59 (GMT) |
commit | dba4ade20672f9434ee5f1c871cc0e3454dc6fd0 (patch) | |
tree | e0ed0df0d95c75b6ebbf3e1d7269c0165c1e8d48 /generic/tcl.h | |
parent | 40c309568a00ef2f5cd2db5618f02f075d9cda5b (diff) | |
download | tcl-dba4ade20672f9434ee5f1c871cc0e3454dc6fd0.zip tcl-dba4ade20672f9434ee5f1c871cc0e3454dc6fd0.tar.gz tcl-dba4ade20672f9434ee5f1c871cc0e3454dc6fd0.tar.bz2 |
* generic/tclUtf.c: changed Tcl_UtfBackslash to not allow
non-octal digits (8,9) in \ooo substs. [Bug: 3975]
* generic/tcl.h: noted need to change win/tcl.m4 and
tools/tclSplash.bmp for minor version changes
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index bc56bb6..2deee7c 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -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: tcl.h,v 1.60 1999/12/21 23:58:03 hobbs Exp $ + * RCS: @(#) $Id: tcl.h,v 1.61 2000/01/11 22:08:59 hobbs Exp $ */ #ifndef _TCL @@ -41,6 +41,7 @@ extern "C" { * library/init.tcl (only if Major.minor changes, not patchlevel) 1 LOC * unix/configure.in (2 LOC Major, 2 LOC minor, 1 LOC patch) * win/configure.in (as above) + * win/tcl.m4 (not patchlevel) * win/makefile.vc (not patchlevel) 2 LOC * win/pkgIndex.tcl (not patchlevel, for tclregNN.dll) * README (sections 0 and 2) @@ -51,6 +52,7 @@ extern "C" { * tests/basic.test (not patchlevel) (version checks) * tools/tcl.hpj.in (not patchlevel, for windows installer) * tools/tcl.wse.in (for windows installer) + * tools/tclSplash.bmp (not patchlevel) */ #define TCL_MAJOR_VERSION 8 @@ -276,6 +278,13 @@ extern "C" { # define CONST #endif +/* + * Make sure EXTERN isn't defined elsewhere + */ +#ifdef EXTERN +#undef EXTERN +#endif /* EXTERN */ + #ifdef __cplusplus # define EXTERN extern "C" TCL_STORAGE_CLASS #else |