/* * tkMacConfig.c -- * * This module implements the Macintosh system defaults for * the configuration package. * * Copyright (c) 1997 by Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. */ #include "tk.h" #include "tkInt.h" /* *---------------------------------------------------------------------- * * TkpGetSystemDefault -- * * Given a dbName and className for a configuration option, * return a string representation of the option. * * Results: * Returns a Tk_Uid that is the string identifier that identifies * this option. Returns NULL if there are no system defaults * that match this pair. * * Side effects: * None, once the package is initialized. * *---------------------------------------------------------------------- */ Tcl_Obj * TkpGetSystemDefault( Tk_Window tkwin, /* A window to use. */ CONST char *dbName, /* The option database name. */ CONST char *className) /* The name of the option class. */ { return NULL; } e='activestate_nre_excised_variant_1_roll_forward'>activestate_nre_excised_variant_1_roll_forward 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
...
| | * | | | | | | | | | | | | * generic/tcl.h:Miguel Sofer2009-03-198-594/+609
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.h: * generic/tclBasic.c: * generic/tclExecute.c: * generic/tclNamesp.c (Tcl_PopCallFrame): Rewritten tailcall implementation, ::unsupported::atProcExit is (temporarily?) gone. The new approach is much simpler, and also closer to being correct. This commit fixes [Bug 2649975] and [Bug 2695587]. * tests/coroutine.test: Moved the tests to their own files, * tests/tailcall.test: removed the unsupported.test. Added * tests/unsupported.test: tests for the fixed bugs.
| | * | | | | | | | | | | | | Added documentation for tailcall.dkf2009-03-192-0/+73
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | * win/tclWinFile.c (TclpObjNormalizePath): Corrected Tcl_Obj leak.dgp2009-03-182-2/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks to Joe Mistachkin for detection and patch. [Bug 2688184].
| | * | | | | | | | | | | | | * generic/tclVar.c (TclLookupSimpleVar): Shift all calls todgp2009-03-182-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tcl_SetErrorCode() out of TclLookupSimpleVar and onto its callers, where control with TCL_LEAVE_ERR_MSG flag is more easily handled. [Bug 2689307]
| | * | | | | | | | | | | | | Fix [Bug 2688063]dkf2009-03-162-27/+39
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | revise fix for [Bug 2687952]Joe Mistachkin2009-03-163-7/+10
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Fix [Bug 2687952]dkf2009-03-153-5/+24
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Added support for SIGINFO. [Patch 1513655]dkf2009-03-152-1/+12
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | regendkf2009-03-141-1/+2
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | Added support for reporting TEA-like info via pkg-config.dkf2009-03-144-6/+35
| | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | * generic/tclBasic.c (TclNRCoroutineObjCmd): fix Tcl_Obj leak.Miguel Sofer2009-03-112-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Diagnose and fix thx to GPS.
| | * | | | | | | | | | | | | Move the implementation of [try] from Tcl to C. Not yet bytecoded.dkf2009-03-09