diff options
author | Oskar <> | 2024-04-15 19:47:11 +0200 |
---|---|---|
committer | Oskar <> | 2024-04-15 19:47:11 +0200 |
commit | d84e48daea04e59a39c83220a22fa1462d515b0c (patch) | |
tree | 367626125a0fdd79de3b6c498d6c3ee67b411980 /editmode.c | |
parent | 54dd830ece95d7a2666d0ec2931c873116f76411 (diff) |
Bug with 'D' is fixed. Will continue testing.
Diffstat (limited to 'editmode.c')
-rw-r--r-- | editmode.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -267,7 +267,7 @@ int editmode(char filename[], uint64_t focus) { // the editing interface } if (editbuffer[0] == '\n') { - fprintf(stdout, "No changes\n"); + // No changes return 0; } |