~ubuntu-dev/ubuntu/lucid/mutt/lucid-201002110857

« back to all changes in this revision

Viewing changes to mutt.h

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-06-07 17:30:03 UTC
  • mto: (16.2.1 experimental) (2.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20090607173003-rg37ui3h2bbv7wl0
Tags: upstream-1.5.19
ImportĀ upstreamĀ versionĀ 1.5.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
 
76
76
#include "mutt_regex.h"
77
77
 
78
 
/* flags for mutt_copy_header() */
79
 
#define CH_UPDATE       1      /* update the status and x-status fields? */
80
 
#define CH_WEED         (1<<1) /* weed the headers? */
81
 
#define CH_DECODE       (1<<2) /* do RFC1522 decoding? */
82
 
#define CH_XMIT         (1<<3) /* transmitting this message? */
83
 
#define CH_FROM         (1<<4) /* retain the "From " message separator? */
84
 
#define CH_PREFIX       (1<<5) /* use Prefix string? */
85
 
#define CH_NOSTATUS     (1<<6) /* supress the status and x-status fields */
86
 
#define CH_REORDER      (1<<7) /* Re-order output of headers */
87
 
#define CH_NONEWLINE    (1<<8) /* don't output terminating newline */
88
 
#define CH_MIME         (1<<9) /* ignore MIME fields */
89
 
#define CH_UPDATE_LEN   (1<<10) /* update Lines: and Content-Length: */
90
 
#define CH_TXTPLAIN     (1<<11) /* generate text/plain MIME headers */
91
 
#define CH_NOLEN        (1<<12) /* don't write Content-Length: and Lines: */
92
 
#define CH_WEED_DELIVERED (1<<13) /* weed eventual Delivered-To headers */
93
 
#define CH_FORCE_FROM   (1<<14) /* give CH_FROM precedence over CH_WEED? */
94
 
#define CH_NOQFROM      (1<<15) /* give CH_FROM precedence over CH_WEED? */
95
 
#define CH_UPDATE_IRT   (1<<16) /* update In-Reply-To: */
96
 
#define CH_UPDATE_REFS  (1<<17) /* update References: */
97
 
 
98
78
/* flags for mutt_enter_string() */
99
79
#define  M_ALIAS   1      /* do alias "completion" by calling up the alias-menu */
100
80
#define  M_FILE    (1<<1) /* do file completion */
359
339
  OPTFORWQUOTE,
360
340
#ifdef USE_HCACHE
361
341
  OPTHCACHEVERIFY,
362
 
#ifdef HAVE_QDBM
 
342
#if defined(HAVE_QDBM) || defined(HAVE_TC)
363
343
  OPTHCACHECOMPRESS,
364
344
#endif /* HAVE_QDBM */
365
345
#endif
937
917
#define state_reset_prefix(s) ((s)->flags &= ~M_PENDINGPREFIX)
938
918
#define state_puts(x,y) fputs(x,(y)->fpout)
939
919
#define state_putc(x,y) fputc(x,(y)->fpout)
 
920
#define state_putws(x,y) fputws(x,(y)->fpout)
 
921
#define state_putwc(x,y) fputwc(x,(y)->fpout)
940
922
 
941
923
void state_mark_attach (STATE *);
942
924
void state_attach_puts (const char *, STATE *);