]> granicus.if.org Git - neomutt/commitdiff
replace 'pager_t' with 'struct Pager'
authorRichard Russon <rich@flatcap.org>
Tue, 16 May 2017 13:18:34 +0000 (14:18 +0100)
committerRichard Russon <rich@flatcap.org>
Tue, 16 May 2017 14:21:29 +0000 (15:21 +0100)
attach.c
commands.c
curs_lib.c
pager.c
pager.h

index c9499ca00731b10921090b691f23457a4bc22322..5ed0ddcaa6caabbe0dd6a65aad7a46f5e6678ffb 100644 (file)
--- a/attach.c
+++ b/attach.c
@@ -555,7 +555,7 @@ int mutt_view_attachment(FILE *fp, struct Body *a, int flag, struct Header *hdr,
 
   if (use_pager)
   {
-    pager_t info;
+    struct Pager info;
 
     memset(&info, 0, sizeof(info));
     info.fp = fp;
index e191c44b27ea90912f7d75c217ecad54f1cb7a8b..40b1e789327343db44c9386c5cfa3fb47a0d00dd 100644 (file)
@@ -180,7 +180,7 @@ int mutt_display_message(struct Header *cur)
 
   if (builtin)
   {
-    pager_t info;
+    struct Pager info;
 
     if (WithCrypto && (cur->security & APPLICATION_SMIME) && (cmflags & MUTT_CM_VERIFY))
     {
@@ -208,7 +208,7 @@ int mutt_display_message(struct Header *cur)
     }
 
     /* Invoke the builtin pager */
-    memset(&info, 0, sizeof(pager_t));
+    memset(&info, 0, sizeof(struct Pager));
     info.hdr = cur;
     info.ctx = Context;
     rc = mutt_pager(NULL, tempfile, MUTT_PAGER_MESSAGE, &info);
index 00d598c939edf501f988de0e1e5046a47b993ff1..6862fd8c35fdc18be8906e4008da4ee2f879e55a 100644 (file)
@@ -837,7 +837,7 @@ int mutt_any_key_to_continue(const char *s)
   return (ch >= 0) ? ch : EOF;
 }
 
-int mutt_do_pager(const char *banner, const char *tempfile, int do_color, pager_t *info)
+int mutt_do_pager(const char *banner, const char *tempfile, int do_color, struct Pager *info)
 {
   int rc;
 
diff --git a/pager.c b/pager.c
index 9a3e9d7316fff273b73294a7f664235dabe38521..3cb66f09716e637e28c2b3096bdd179a741e4dc1 100644 (file)
--- a/pager.c
+++ b/pager.c
@@ -1639,7 +1639,7 @@ void mutt_clear_pager_position(void)
 typedef struct
 {
   int flags;
-  pager_t *extra;
+  struct Pager *extra;
   int indexlen;
   int indicator; /* the indicator line of the PI */
   int oldtopline;
@@ -1950,7 +1950,7 @@ static void pager_menu_redraw(struct Menu *pager_menu)
    can be distinguished by whether or not ``hdr'' is NULL.  The ``hdr'' arg
    is there so that we can do operations on the current message without the
    need to pop back out to the main-menu.  */
-int mutt_pager(const char *banner, const char *fname, int flags, pager_t *extra)
+int mutt_pager(const char *banner, const char *fname, int flags, struct Pager *extra)
 {
   static char searchbuf[STRING] = "";
   char buffer[LONG_STRING];
diff --git a/pager.h b/pager.h
index 886dea49272a3466a7d177bba5f2ff30f87c8e4a..cc59ef5d1b60fcba6d39b9d3365f36f70d78fcb7 100644 (file)
--- a/pager.h
+++ b/pager.h
@@ -38,7 +38,7 @@
 
 #define MUTT_DISPLAYFLAGS (MUTT_SHOW | MUTT_PAGER_NSKIP | MUTT_PAGER_MARKER)
 
-typedef struct
+struct Pager
 {
   struct Context *ctx;    /* current mailbox */
   struct Header *hdr;     /* current message */
@@ -46,10 +46,10 @@ typedef struct
   FILE *fp;        /* source stream */
   struct AttachPtr **idx; /* attachment information */
   short idxlen;
-} pager_t;
+};
 
-int mutt_do_pager(const char *banner, const char *tempfile, int do_color, pager_t *info);
-int mutt_pager(const char *banner, const char *fname, int flags, pager_t *extra);
+int mutt_do_pager(const char *banner, const char *tempfile, int do_color, struct Pager *info);
+int mutt_pager(const char *banner, const char *fname, int flags, struct Pager *extra);
 void update_index(struct Menu *menu, struct Context *ctx, int check, int oldcount, int index_hint);
 
 #endif /* _MUTT_PAGER_H */