Projects STRLCPY neomutt Commits 9c456f52
🤬
  • ■ ■ ■ ■ ■
    email/parse.c
    skipped 955 lines
    956 956   {
    957 957   case 'O':
    958 958   {
    959  - const bool c_mark_old = cs_subset_bool(NeoMutt->sub, "mark_old");
    960  - e->old = c_mark_old;
     959 + e->old = true;
    961 960   break;
    962 961   }
    963 962   case 'R':
    skipped 811 lines
  • ■ ■ ■ ■ ■
    maildir/maildir.c
    skipped 521 lines
    522 522   struct Buffer *buf = mutt_buffer_pool_get();
    523 523   
    524 524   mutt_buffer_printf(buf, "%s/%s", mailbox_path(m), subdir);
    525  - const bool c_mark_old = cs_subset_bool(NeoMutt->sub, "mark_old");
    526  - is_old = c_mark_old ? mutt_str_equal("cur", subdir) : false;
     525 + is_old = mutt_str_equal("cur", subdir);
    527 526   
    528 527   DIR *dirp = opendir(mutt_buffer_string(buf));
    529 528   if (!dirp)
    skipped 1144 lines
Please wait...
Page is in error, reload to recover