X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=pattern.c;h=5b9c13ad38b8f1caeff614369f9a5780fc8afbfe;hp=be05a183e503981d6819bf4d60acb61966d2804b;hb=afa60149c4d2bb71c8195091d3658b3bdc12d59d;hpb=0f44dc85fc1280372ffab911d701e703d803fb4b diff --git a/pattern.c b/pattern.c index be05a18..5b9c13a 100644 --- a/pattern.c +++ b/pattern.c @@ -12,9 +12,9 @@ #endif #include "mutt.h" +#include "mx.h" #include "mapping.h" #include "keymap.h" -#include "mailbox.h" #include "copy.h" #include "lib/mem.h" @@ -204,7 +204,7 @@ msg_search (CONTEXT * ctx, regex_t * rx, char *buf, size_t blen, int op, match = 1; break; } - lng -= safe_strlen (buf); + lng -= mutt_strlen (buf); } mx_close_message (&msg); @@ -667,7 +667,7 @@ pattern_t *mutt_pattern_comp ( /* const */ char *s, int flags, BUFFER * err) memset (&ps, 0, sizeof (ps)); ps.dptr = s; - ps.dsize = safe_strlen (s); + ps.dsize = mutt_strlen (s); while (*ps.dptr) { SKIPWS (ps.dptr); @@ -1098,7 +1098,7 @@ void mutt_check_simple (char *s, size_t len, const char *simple) if (!strchr (s, '~')) { /* yup, so spoof a real request */ /* convert old tokens into the new format */ - if (ascii_strcasecmp ("all", s) == 0 || !safe_strcmp ("^", s) || !safe_strcmp (".", s)) /* ~A is more efficient */ + if (ascii_strcasecmp ("all", s) == 0 || !mutt_strcmp ("^", s) || !mutt_strcmp (".", s)) /* ~A is more efficient */ strfcpy (s, "~A", len); else if (ascii_strcasecmp ("del", s) == 0) strfcpy (s, "~D", len); @@ -1132,9 +1132,14 @@ int mutt_pattern_func (int op, char *prompt) strfcpy (buf, NONULL (Context->pattern), sizeof (buf)); if (prompt || op != M_LIMIT) - if (mutt_get_field (prompt, buf, sizeof (buf), M_PATTERN | M_CLEAR) != 0 - || !buf[0]) + if (mutt_get_field (prompt, buf, sizeof (buf), M_PATTERN | M_CLEAR) != 0) return (-1); + if (!buf[0]) { + if (op == M_LIMIT) + strncpy (buf, "~A", sizeof (buf)); + else + return (-1); + } mutt_message _("Compiling search pattern..."); @@ -1256,7 +1261,7 @@ int mutt_search_command (int cur, int op) strfcpy (temp, buf, sizeof (temp)); mutt_check_simple (temp, sizeof (temp), NONULL (SimpleSearch)); - if (!SearchPattern || safe_strcmp (temp, LastSearchExpn)) { + if (!SearchPattern || mutt_strcmp (temp, LastSearchExpn)) { set_option (OPTSEARCHINVALID); strfcpy (LastSearch, buf, sizeof (LastSearch)); mutt_message _("Compiling search pattern...");