Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Sync up TclContext hLibrary member name with 'main.c'. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
d7bcdcbf2e70fd79414990765f6e9d19 |
| User & Date: | mistachkin 2015-06-10 22:31:11.610 |
Context
|
2015-06-11
| ||
| 15:28 | Build-in the linenoise command-line editing library on unix. check-in: 8514856576 user: drh tags: trunk | |
| 15:20 | Build-in Antirez's linenoise library for command-line editing on the "fossil sql" command on unix. Closed-Leaf check-in: 2d79355f9c user: drh tags: linenoise | |
|
2015-06-10
| ||
| 22:31 | Sync up TclContext hLibrary member name with 'main.c'. check-in: d7bcdcbf2e user: mistachkin tags: trunk | |
| 22:18 | Coding style adjustments to the Tcl integration subsystem. check-in: fec856f48c user: mistachkin tags: trunk | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
100 101 102 103 104 105 106 |
** All Tcl related context information is in this structure. This structure
** definition has been copied from and should be kept in sync with the one in
** "th_tcl.c".
*/
struct TclContext {
int argc; /* Number of original (expanded) arguments. */
char **argv; /* Full copy of the original (expanded) arguments. */
| | | 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
** All Tcl related context information is in this structure. This structure
** definition has been copied from and should be kept in sync with the one in
** "th_tcl.c".
*/
struct TclContext {
int argc; /* Number of original (expanded) arguments. */
char **argv; /* Full copy of the original (expanded) arguments. */
void *hLibrary; /* The Tcl library module handle. */
void *xFindExecutable; /* See tcl_FindExecutableProc in th_tcl.c. */
void *xCreateInterp; /* See tcl_CreateInterpProc in th_tcl.c. */
void *xDeleteInterp; /* See tcl_DeleteInterpProc in th_tcl.c. */
void *xFinalize; /* See tcl_FinalizeProc in th_tcl.c. */
Tcl_Interp *interp; /* The on-demand created Tcl interpreter. */
int useObjProc; /* Non-zero if an objProc can be called directly. */
char *setup; /* The optional Tcl setup script. */
|
| ︙ | ︙ |