Diff
Not logged in

Differences From Artifact [67c1c97325]:

To Artifact [5c56b6c928]:


414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
#endif /* TCL_DYLD_USE_NSMODULE */
    }
    Tcl_DStringFree(&ds);
    if (errMsg && (interp != NULL)) {
	Tcl_SetObjResult(interp, Tcl_ObjPrintf(
		"cannot find symbol \"%s\": %s", symbol, errMsg));
	Tcl_SetErrorCode(interp, "TCL", "LOOKUP", "LOAD_SYMBOL", symbol,
		NULL);
    }
    return (void *)proc;
}

/*
 *----------------------------------------------------------------------
 *







|







414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
#endif /* TCL_DYLD_USE_NSMODULE */
    }
    Tcl_DStringFree(&ds);
    if (errMsg && (interp != NULL)) {
	Tcl_SetObjResult(interp, Tcl_ObjPrintf(
		"cannot find symbol \"%s\": %s", symbol, errMsg));
	Tcl_SetErrorCode(interp, "TCL", "LOOKUP", "LOAD_SYMBOL", symbol,
		(void *)NULL);
    }
    return (void *)proc;
}

/*
 *----------------------------------------------------------------------
 *