diff options
author | Oskar <[email protected]> | 2024-04-14 19:12:45 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-04-14 19:12:45 +0200 |
commit | 54dd830ece95d7a2666d0ec2931c873116f76411 (patch) | |
tree | f2f7e9cad226f3919de6cb0b70f0ad59a68703a3 /startmode.c | |
parent | 5adffffc05eef954a606e28e8f769ce0a31c83c7 (diff) |
Updated usage and removed some testing code. Added some comments. I
found a bug with 'D' but i will investigate tomorrow.
Diffstat (limited to 'startmode.c')
-rw-r--r-- | startmode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/startmode.c b/startmode.c index 372cc94..cc19376 100644 --- a/startmode.c +++ b/startmode.c @@ -119,11 +119,11 @@ int startmode(char filename[]) { switch(multiple[0]) { case 'l': case 'L': - focus = call_L(multiple, focus, Flines); // implemented + focus = call_L(multiple, focus, Flines); break; case 'n': case 'N': - call_N(multiple, focus, Flines, filename); // Implemented + call_N(multiple, focus, Flines, filename); break; case 'x': case 'X': |