Lines Matching defs:command
5 * the "package" command and a few C APIs.
18 * Each invocation of the "package ifneeded" command creates a structure
20 * interpreter if it is requested with a "package require" command.
130 * The script from some previous "package ifneeded" command may
152 Tcl_DString command;
217 * command, invoke it (but only on the first pass; after that,
226 Tcl_DStringInit(&command);
227 Tcl_DStringAppend(&command, script, -1);
228 Tcl_DStringAppendElement(&command, name);
229 Tcl_DStringAppend(&command, " ", 1);
230 Tcl_DStringAppend(&command, (version != NULL) ? version : "{}",
233 Tcl_DStringAppend(&command, " -exact", 7);
235 code = Tcl_GlobalEval(interp, Tcl_DStringValue(&command));
236 Tcl_DStringFree(&command);
281 * This procedure is invoked to process the "package" Tcl command.
463 " unknown ?command?\"", (char *) NULL);