diff options
author | John Ankarström <john@ankarstrom.se> | 2019-01-10 11:04:40 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2019-01-10 11:04:40 +0100 |
commit | 20170d4e43032620774cc729c854daffbc1075ad (patch) | |
tree | d63b737e0045e067311be96f9722325b05648324 | |
parent | eeef33a2327f0ebe6a83b2be9f6b0367c06ca39c (diff) | |
download | repl-20170d4e43032620774cc729c854daffbc1075ad.tar.gz |
don't add to history on empty input
-rw-r--r-- | repl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -38,7 +38,7 @@ int main(int argc, char *argv[]) { break; } - add_history(input); + if (input[0] != '\0') add_history(input); int size = strlen(argv[1]) + 1 + strlen(input) + 1; char *command = malloc(size); |