Commit b3b6cb04 b3b6cb044fd7ae0536fbdf38d15af435bad5ce43 by Sergey Poznyakoff

Do not mark current folder when in fast mode

1 parent 6b2eaf51
...@@ -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
......