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

« back to all changes in this revision

Viewing changes to mutt_menu.h

  • Committer: Bazaar Package Importer
  • Author(s): Antonio Radici
  • Date: 2009-06-14 20:53:18 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (2.1.3 squeeze)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20090614205318-wf0sqy1o3km636li
Tags: 1.5.20-1
* New upstream release, includes the following features:
  + Bounced messages contains From: headers (Closes: 93268)
  + Attachments displayed based on Content-Disposition (Closes: 199709)
  + fcc to a mailbox does not raise the 'new' flag (Closes: 209390)
  + '!' supported as suffix in gpg keys (Closes: 277945)
  + failed attachment saving shows an error message (Closes: 292350)
  + inline signed messages sent honouring $send_charset (Closes: 307819)
  + support for <clear-flag> and <set-flag> in the pager (Closes: 436007)
  + fcc_attach is a quad option (Closes: 478861)
  + Content-Description header not included in reply (Closes: 500766)
  + imap_sync_mailbox fix for a segfault (Closes: 516364)
  + better threading support with particular Message-ID's (Closes: 520735)
  + no crash on IMAP folder refresh (Closes: 528465)
  + undisclosed-recipients not passed in the envelope (Closes: 529090)
* debian/patches/series:
  + commented all references to upstream/*, they should be included in 1.5.20
  + removed debian-specific/529838-gnutls-autoconf.patch, ditto
  + removed misc/manpage-typos.patch, ditto 
  + modified misc/hyphen-as-minus.patch, a big part was integrated upstream
  + features/trash-folder: do not reupload messages to $trash if IMAP is used
    (Closes: #448241)
  + added misc/hg.pmdef.debugtime, see upstream #3263
* debian/control: added DM-Upload-Allowed: yes

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
  /* the following are used only by mutt_menuLoop() */
76
76
  int top;              /* entry that is the top of the current page */
77
77
  int oldcurrent;       /* for driver use only. */
78
 
  char *searchBuf;      /* last search pattern */
79
78
  int searchDir;        /* direction of search */
80
79
  int tagged;           /* number of tagged entries */
81
80
} MUTTMENU;
82
81
 
 
82
void mutt_menu_init (void);
83
83
void menu_jump (MUTTMENU *);
84
84
void menu_redraw_full (MUTTMENU *);
85
85
void menu_redraw_index (MUTTMENU *);
104
104
void menu_check_recenter (MUTTMENU *);
105
105
void menu_status_line (char *, size_t, MUTTMENU *, const char *);
106
106
 
107
 
MUTTMENU *mutt_new_menu (void);
 
107
MUTTMENU *mutt_new_menu (int);
108
108
void mutt_menuDestroy (MUTTMENU **);
109
109
int mutt_menuLoop (MUTTMENU *);
110
110