Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Only #include "linenoise.h" in fshell.c on non-Windows platforms |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9c90682b02f39a2e55b09c094eb73a50 |
User & Date: | andygoth 2016-11-16 19:25:34.376 |
Context
2016-11-16
| ||
19:29 | Enable linenoise multiline editing so long commands and queries may be seen all at once therefore highlighted and copied from xterms ... (check-in: 03b68698 user: andygoth tags: trunk) | |
19:25 | Only #include "linenoise.h" in fshell.c on non-Windows platforms ... (check-in: 9c90682b user: andygoth tags: trunk) | |
14:47 | Change the /test-version webpage into /version. Link it to /stat. ... (check-in: 286effd5 user: drh tags: trunk) | |
Changes
Changes to src/fshell.c.
︙ | ︙ | |||
23 24 25 26 27 28 29 | ** ** The "fossil shell" command is intended for use with SEE-enabled fossil. ** It allows multiple commands to be issued without having to reenter the ** crypto phasephrase for each command. */ #include "config.h" #include "fshell.h" | < > | | | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | ** ** The "fossil shell" command is intended for use with SEE-enabled fossil. ** It allows multiple commands to be issued without having to reenter the ** crypto phasephrase for each command. */ #include "config.h" #include "fshell.h" #include <ctype.h> #ifndef _WIN32 # include "linenoise.h" # include <sys/types.h> # include <sys/wait.h> #endif /* ** COMMAND: shell* ** ** Usage: %fossil shell |
︙ | ︙ |