Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix the th_tcl.c to include new macros defined in file.c. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e27b18565eb9489faf560795e80b02fb |
User & Date: | drh 2017-12-03 16:19:38.667 |
Context
2017-12-03
| ||
17:09 | Improved formatting of the generated CSS. ... (check-in: 52b003f1 user: drh tags: trunk) | |
16:19 | Fix the th_tcl.c to include new macros defined in file.c. ... (check-in: e27b1856 user: drh tags: trunk) | |
11:18 | Rework the Setup/Skin page so that all edits are done on a draft, then tested, then the draft is published to become the default skin. ... (check-in: 106fe618 user: drh tags: trunk) | |
Changes
Changes to src/th_tcl.c.
︙ | ︙ | |||
845 846 847 848 849 850 851 852 853 854 855 856 857 858 | ** shared library and fetch the function pointers necessary to create an ** interpreter and initialize the stubs mechanism; otherwise, simply setup ** the function pointers provided by the caller with the statically linked ** functions. */ char *fossil_getenv(const char *zName); /* file.h */ int file_isdir(const char *zPath, int); /* file.h */ char *file_dirname(const char *zPath); /* file.h */ void fossil_free(void *p); /* util.h */ static int loadTcl( Th_Interp *interp, void **phLibrary, tcl_FindExecutableProc **pxFindExecutable, | > > > | 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 | ** shared library and fetch the function pointers necessary to create an ** interpreter and initialize the stubs mechanism; otherwise, simply setup ** the function pointers provided by the caller with the statically linked ** functions. */ char *fossil_getenv(const char *zName); /* file.h */ int file_isdir(const char *zPath, int); /* file.h */ #define ExtFILE 0 /* file.h */ #define RepoFILE 1 /* file.h */ #define SymFILE 2 /* file.h */ char *file_dirname(const char *zPath); /* file.h */ void fossil_free(void *p); /* util.h */ static int loadTcl( Th_Interp *interp, void **phLibrary, tcl_FindExecutableProc **pxFindExecutable, |
︙ | ︙ |