diff options
author | drh <drh@noemail.net> | 2017-07-18 20:59:40 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-07-18 20:59:40 +0000 |
commit | 5a75dd86c1abacc370b919eb1fb1a0a46f45adf6 (patch) | |
tree | 00bc08fc9ed910e75904bf38d0c618f801b0cc3e /src | |
parent | ff0a4edb72c969e7b1a642ed1270a54f3e06e693 (diff) | |
download | sqlite-5a75dd86c1abacc370b919eb1fb1a0a46f45adf6.tar.gz sqlite-5a75dd86c1abacc370b919eb1fb1a0a46f45adf6.zip |
Fix shell.c.in so that it aligns with shell.c.
FossilOrigin-Name: 505fdc8ff5150276d3c6ab6135a542b791e9e79e2f76323e592b73b3fdc9bc2a
Diffstat (limited to 'src')
-rw-r--r-- | src/shell.c.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.c.in b/src/shell.c.in index 47b0e2556..4dac4a62d 100644 --- a/src/shell.c.in +++ b/src/shell.c.in @@ -7015,7 +7015,7 @@ int SQLITE_CDECL wmain(int argc, wchar_t **wargv){ #endif rc = process_input(&data, 0); if( zHistory ){ - shell_stifle_history(100); + shell_stifle_history(2000); shell_write_history(zHistory); free(zHistory); } |