Itk - the [incr Tk] extension

Check-in [96f440d6e8]
Login

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

Overview
Comment:remove unreachable code
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | itk-4-0-1-rc
Files: files | file ages | folders
SHA1: 96f440d6e88de16474a23656dcabb45cddb50661
User & Date: dgp 2015-02-24 15:28:38.832
Context
2015-02-25
13:15
eliminate unused variable check-in: fe90b13b71 user: dgp tags: itk-4-0-1-rc
2015-02-24
17:55
Borrow genstubs tool from Itcl; Run it. Closed-Leaf check-in: 8b5571dcf5 user: dgp tags: dgp-linkage
15:49
Stop using the cargo cult idioms from ~2001 for Foo_InitStubs() calls. Closed-Leaf check-in: 983ca7876e user: dgp tags: dgp-initstubs
15:28
remove unreachable code check-in: 96f440d6e8 user: dgp tags: itk-4-0-1-rc
2015-02-05
13:45
merge trunk check-in: 66a2f526df user: dgp tags: itk-4-0-1-rc
Changes
Unified Diff Ignore Whitespace Patch
Changes to generic/itkBase.c.
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
Itk_Init(
    Tcl_Interp *interp)  /* interpreter to be updated */
{
    if (Initialize(interp) != TCL_OK) {
	return TCL_ERROR;
    }
    return Tcl_Eval(interp, initScript);
    return TCL_OK;
}


/*
 * ------------------------------------------------------------------------
 *  Itk_SafeInit()
 *   







<







253
254
255
256
257
258
259

260
261
262
263
264
265
266
Itk_Init(
    Tcl_Interp *interp)  /* interpreter to be updated */
{
    if (Initialize(interp) != TCL_OK) {
	return TCL_ERROR;
    }
    return Tcl_Eval(interp, initScript);

}


/*
 * ------------------------------------------------------------------------
 *  Itk_SafeInit()
 *