Do not mark current folder when in fast mode
Showing
1 changed file
with
1 additions
and
6 deletions
... | @@ -362,12 +362,7 @@ print_fast () | ... | @@ -362,12 +362,7 @@ print_fast () |
362 | struct folder_info *info, *end = folder_info + folder_info_count; | 362 | struct folder_info *info, *end = folder_info + folder_info_count; |
363 | 363 | ||
364 | for (info = folder_info; info < end; info++) | 364 | for (info = folder_info; info < end; info++) |
365 | { | 365 | printf ("%s\n", info->name); |
366 | printf ("%s", info->name); | ||
367 | if (strcmp (info->name, current_folder) == 0) | ||
368 | printf ("+"); | ||
369 | printf ("\n"); | ||
370 | } | ||
371 | } | 366 | } |
372 | 367 | ||
373 | static int | 368 | static int | ... | ... |
-
Please register or sign in to post a comment