Check-in [f9c437786a]
Not logged in

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

Overview
Comment:add selected tcl upstream changes
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: f9c437786a83b67e6bac27464520aabb6084bde7
User & Date: chw 2019-06-26 03:49:03.458
Context
2019-06-26
04:11
add selected tcllib upstream changes check-in: 17beea27ed user: chw tags: trunk
03:49
add selected tcl upstream changes check-in: f9c437786a user: chw tags: trunk
03:41
add selected tk upstream changes check-in: 26ecdae69e user: chw tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
jni/tcl/library/msgs/ja.msg became a regular file.
Changes to jni/tcl/win/tclWinPort.h.
482
483
484
485
486
487
488
489
490

491
492

493
494
495
496
497
498
499


/*
 * MSVC 8.0 started to mark many standard C library functions depreciated
 * including the *printf family and others. Tell it to shut up.
 * (_MSC_VER is 1200 for VC6, 1300 or 1310 for vc7.net, 1400 for 8.0)
 */
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
#   pragma warning(disable:4244)

#   pragma warning(disable:4267)
#   pragma warning(disable:4996)

#endif

/*
 *---------------------------------------------------------------------------
 * The following macros and declarations represent the interface between
 * generic and windows-specific parts of Tcl.  Some of the macros may
 * override functions declared in tclInt.h.







|

>
|
|
>







482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501


/*
 * MSVC 8.0 started to mark many standard C library functions depreciated
 * including the *printf family and others. Tell it to shut up.
 * (_MSC_VER is 1200 for VC6, 1300 or 1310 for vc7.net, 1400 for 8.0)
 */
#if defined(_MSC_VER)
#   pragma warning(disable:4244)
#   if _MSC_VER >= 1400
#	pragma warning(disable:4267)
#	pragma warning(disable:4996)
#   endif
#endif

/*
 *---------------------------------------------------------------------------
 * The following macros and declarations represent the interface between
 * generic and windows-specific parts of Tcl.  Some of the macros may
 * override functions declared in tclInt.h.