]> git.pld-linux.org Git - packages/mutt.git/blob - patch-1.02.sec._A.1
01e76f1b9d780d90758c02c4ed9b5f73188d0af9
[packages/mutt.git] / patch-1.02.sec._A.1
1 --- mutt-1.0pre2/hdrline.c.orig Wed Sep  1 16:14:20 1999
2 +++ mutt-1.0pre2/hdrline.c      Sat Sep 11 03:32:57 1999
3 @@ -187,6 +187,7 @@
4  }
5  
6  /* %a = address of author
7 + * %A = number of new messages in the mailbox
8   * %b = filename of the originating folder
9   * %B = the list to which the letter was sent
10   * %c = size of message in bytes
11 @@ -255,6 +256,16 @@
12          dest[0] = '\0';
13        break;
14  
15 +    case 'A':
16 +      if(ctx)
17 +      {
18 +       snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
19 +       snprintf (dest, destlen, fmt, ctx->new);
20 +      }
21 +      else
22 +       strfcpy(dest, "(null)", destlen);
23 +      break;
24 +
25      case 'B':
26        if (!first_mailing_list (dest, destlen, hdr->env->to) &&
27           !first_mailing_list (dest, destlen, hdr->env->cc))
28 --- mutt-0.94.7i/patchlist.c.orig       Sat Sep 19 02:29:51 1998
29 +++ mutt-0.94.7i/patchlist.c    Sat Sep 19 02:54:16 1998
30 @@ -16,6 +16,8 @@
31  
32  
33  
34 +  printf("Feature patch: %%A                   1.02   by Stefan `Sec` Zehl\n");
35 +
36  
37  
38    /* DO NOT MODIFY AFTER THIS LINE */
This page took 0.023087 seconds and 2 git commands to generate.