summaryrefslogtreecommitdiffstats
path: root/Parser/intrcheck.c
Commit message (Expand)AuthorAgeFilesLines
* Make gcc -Wall happyGuido van Rossum1996-12-021-0/+3
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* Always include config.hGuido van Rossum1996-08-191-3/+0
* added PyErr_SetInterrupt()Guido van Rossum1995-03-101-0/+6
* remove last bits of mac specific codeGuido van Rossum1995-01-301-8/+0
* Mac interrupt code moved to macglue.cJack Jansen1995-01-271-76/+1
* New cmd-. handling for the mac.Jack Jansen1995-01-261-15/+21
* typoGuido van Rossum1995-01-201-1/+1
* Added mac-only intrpeek routine that peeks for command-.Jack Jansen1995-01-191-5/+30
* made interrupted static againGuido van Rossum1995-01-171-1/+1
* Added 1995 to copyright message.Guido van Rossum1995-01-041-2/+2
* * Parser/intrcheck.c: make 'interrupted' global (forgot forGuido van Rossum1994-09-281-1/+1
* Merge back to main trunkGuido van Rossum1994-08-301-14/+68
* * Makefile: added all: and default: targets.Guido van Rossum1993-07-051-1/+14
* (I suggest a recompile after getting this, the ceval.c bugfix may be crucial!)Guido van Rossum1993-04-151-0/+9
* * Changed all copyright messages to include 1993.Guido van Rossum1993-03-291-2/+2
* Copyright for 1992 addedGuido van Rossum1992-04-051-1/+1
* lintGuido van Rossum1992-03-271-1/+2
* Added a header file.Guido van Rossum1992-01-191-0/+4
* Reorganized somewhat to make it really work on Think C.Guido van Rossum1991-07-011-10/+5
* Generalize to macintosh.Guido van Rossum1991-06-241-12/+22
* Added copyright notice.Guido van Rossum1991-02-191-0/+24
* Mac version now looks ahead in event queue instead of eating events.Guido van Rossum1991-01-161-10/+35
* "Compiling" versionGuido van Rossum1990-12-201-3/+3
* Initial revisionGuido van Rossum1990-10-141-0/+95
e='core_8_4_20_rc'>core_8_4_20_rc Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* reverted back to 1.6, as the header file change to tclPort.h doesn't allow fordavygrvy2002-02-211-2/+3
| | | | easy embedded support. Thanks to Don Porter for pointing this out to me.
* no messagedavygrvy2002-02-211-0/+13
|
* * win/makefile.vc:davygrvy2002-02-212-5/+17
| | | | | | * win/rules.vc: Added a new "loimpact" option that sets the -ws:aggressive linker option. Off by default. It's said to keep the heap use low at the expense of alloc speed.
* * win/tclAppInit.c: Changed #include "tcl.h" to be tclPort.h todavygrvy2002-02-211-3/+2
| | | | | | | remove the raw windows.h include. tclPort.h brings in windows.h already and lessens the pre-compiled-header mush and the randomly useless #pragma comment (lib,...) references throughout the big windows.h tree (as observed at high linker warning levels).
* typo correction in latest changedgp2002-02-211-2/+2
|
* Improving 'long long' detection...dkf2002-02-212-6/+16
|
* no messagedavygrvy2002-02-201-5/+21
|
* * win/buildall.vc.bat:davygrvy2002-02-203-38/+144
| | | | | | | | | | | | | | | | | | | | | | | * win/makefile.vc: * win/rules.vc: General clean-ups. Added compiler and linker tests for a) the pentium 0x0F errata, b) optimizing (not all have this), and c) linker v6 section alignment confusion. All these are tested first to make sure any D4002 or LNK1117 warnings aren't displayed. The pentium 0x0F errata is a recommended switch. The v5 linker's section alignment default is 512, but the v6 linker was changed to 4096 in an attempt to speed loading on Win98. I changed the default to always be 512 across both linkers, unless linking statically, then 4096 is used for the claimed speed effect. Using a 512 alignment saves 12k bytes of dead space in the DLL. Added IA64 B-stepping errata switch when the compiler supports it. Added profiling to $(lflags) when requested and also removed the explict -entry option as the default works fine as is. Removed win/tclWinInit.c from the special case section to let it use the common implicit rule as the $(EXTFLAGS) macro it had was never referenced anywhere.
* * generic/tcl.decls (Tcl_RegExpRange,Tcl_GetIndexFromObjStruct):dgp2002-02-204-18/+21
| | | | | | | Overlooked a few source incompatibilities. Now using CONST84. * generic/tclDecls.h: make genstubs * generic/tcl.h (Tcl_CmdObjTraceProc): silence warning from Sun Workshop compiler.
* no messagedavygrvy2002-02-201-0/+8
|
* * win/makefile.vc: Added the pentium errata switches to $(cflags)davygrvy2002-02-201-14/+8
| | | | | | | which should have already been there according to the MSDN docs regarding the infamous FDIV bug from `97. Added profiling to $(lflags) and also removed the explict -entry option as the default works without special work.
* Made tcl.h better at guessing what is going on with 64-bit types whendkf2002-02-202-4/+14
| | | | configure doesn't tell it explicitly.
* Fixed behaviour of [format] on 64-bit platforms by defining it to work withdkf2002-02-193-20/+37
| | | | | | machine words by default. This seems to be what the test suite expected anyway, and it is a fairly sensible choice. The other alternative was to make %d always 32-bit and %ld always 64-bit, but that'd be more complex to do.
* * First draft of updated changes for 8.4a4 release.dgp2002-02-192-101/+379
|
* * unix/tclUnixPort.h: add strtoll/strtoull declarations forhobbs2002-02-162-1/+11
| | | | platforms that do not define them.
* * generic/tclIndexObj.c (STRING_AT): removed ptrdiff_t cast andhobbs2002-02-162-14/+7
| | | | use of VOID* in default case (GNU-ism).
* Further changes to the TIP 72 patch to make it compile under VC++Kevin B Kenny2002-02-1510-21/+81
|
* * tclExecute.c:andreas_kupries2002-02-154-6/+18
| | | | | | | * tclIOGT.c: * tclIndexObj.c: Touchups to the TIP 72 patch to make it compileable under Windows again. The changes are not complete, there is one nasty regarding _stati64
* TIP#72 implementation. See ChangeLog for details.dkf2002-02-15