X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=buffy.c;h=2b77b2dce5b22e4d92d69bb2a7113922c1e7bd3d;hp=2ada9b402cc6766c35a998d5ce05f9151f3b0b91;hb=3984877e812b0ba73b84539d231aeca3c2de6b9b;hpb=230399f9632c37b66c1c117a17e8327eae6b3235 diff --git a/buffy.c b/buffy.c index 2ada9b4..2b77b2d 100644 --- a/buffy.c +++ b/buffy.c @@ -10,19 +10,9 @@ * please see the file GPL in the top level source directory. */ -#if HAVE_CONFIG_H -# include "config.h" -#endif - -#include -#include +#include #include #include -#include -#include -#include - -#include #include #include @@ -162,19 +152,23 @@ void buffy_update_mailbox (BUFFY * b) #endif /* func to free buffy for list_del() */ -static void buffy_free (BUFFY** p) { +static inline void buffy_free (BUFFY** p) { p_delete(&(*p)->path); p_delete(p); } +/* Return the index number of path in Incoming list */ int buffy_lookup (const char* path) { int i = 0; + if (list_empty(Incoming) || !path || !*path) return (-1); + for (i = 0; i < Incoming->length; i++) { - if (!m_strcmp(((BUFFY*)Incoming->data[i])->path, path) ) + if (!m_strcmp(((BUFFY *)Incoming->data[i])->path, path)) return (i); } + return (-1); } @@ -476,7 +470,7 @@ int buffy_check (int force) tmp->has_new = tmp->new > 0; } if (BuffyCount > 0 && force != 2) - sidebar_draw (CurrentMenu); + sidebar_draw (); return (BuffyCount); } @@ -496,7 +490,7 @@ int buffy_list (void) pos += m_strlen(strncat (buffylist, _("New mail in "), sizeof (buffylist) - 1 - pos)); /* __STRNCAT_CHECKED__ */ if (Incoming) { for (i = 0; i < Incoming->length; i++) { - tmp = (BUFFY*) Incoming->data[i]; + tmp = Incoming->data[i]; /* Is there new mail in this mailbox? */ if (tmp->new <= 0 || (have_unnotified && tmp->notified)) continue; @@ -510,12 +504,9 @@ int buffy_list (void) if (!first) pos += m_strlen(strncat (buffylist + pos, ", ", sizeof (buffylist) - 1 - pos)); /* __STRNCAT_CHECKED__ */ - /* Prepend an asterisk to mailboxes not already notified */ - if (!tmp->notified) { - /* pos += m_strlen(strncat(buffylist + pos, "*", sizeof(buffylist)-1-pos)); __STRNCAT_CHECKED__ */ - tmp->notified = 1; - BuffyNotify--; - } + tmp->notified = 1; + BuffyNotify--; + pos += m_strlen(strncat (buffylist + pos, path, sizeof (buffylist) - 1 - pos)); /* __STRNCAT_CHECKED__ */ first = 0; } @@ -525,7 +516,7 @@ int buffy_list (void) } if (!first) { /* on new mail: redraw sidebar */ - sidebar_draw (CurrentMenu); + sidebar_draw (); mutt_message ("%s", buffylist); return (1); } @@ -545,7 +536,7 @@ int buffy_notify (void) } /* - * mutt_buffy() -- incoming folders completion routine + * buffy_next() -- incoming folders completion routine * * given a folder name, this routine gives the next incoming folder with new * new mail. @@ -555,25 +546,23 @@ void buffy_next (char *s, size_t slen) int l = 0; int c = 0, i = 0; - if (list_empty(Incoming)) - return; - mutt_expand_path (s, _POSIX_PATH_MAX); - if (buffy_check (0) == 0) { - *s = '\0'; - return; - } + if (!buffy_check (0)) { + *s = '\0'; + return; + } /* - * If buffy_lookup returns the index, + * buffy_lookup returns the index, * or -1 if not found (-1..Incoming->length-1); * plus one --> (0..Incoming->length). * Modulo mapps it into the correct range. */ i = 1 + buffy_lookup (s); - for (l=0; l < Incoming->length; l++) { + for (l = 0; l < Incoming->length; l++) { c = (l+i) % Incoming->length; - if ((!Context || !Context->path || m_strcmp(((BUFFY*) Incoming->data[c])->path, Context->path)) && + + if (m_strcmp(((BUFFY*) Incoming->data[c])->path, s) && ((BUFFY*) Incoming->data[c])->new > 0) break; } @@ -581,7 +570,7 @@ void buffy_next (char *s, size_t slen) *s = '\0'; /* something went wrong since we're here when buffy_check * reported new mail */ - buffy_check (0); + buffy_check (1); } else { m_strcpy(s, slen, ((BUFFY*)Incoming->data[c])->path); mutt_pretty_mailbox (s);