X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=history.c;h=ba01d514bb51d64789e2b6644d05b144dc04f8cd;hp=7323c77f77705161fa8a540f2b0a3534e2dd9d0c;hb=3ea753c6005292b3e3153ac7e1f7b7d2363955c9;hpb=c3e57678c8be193fc137854020f3a90887be97c9 diff --git a/history.c b/history.c index 7323c77..ba01d51 100644 --- a/history.c +++ b/history.c @@ -13,6 +13,7 @@ #include "mutt.h" #include "history.h" +#include "lib/mem.h" /* global vars used for the string-history routines */ @@ -70,7 +71,7 @@ void mutt_history_add (history_class_t hclass, const char *s) if (prev < 0) prev = HistSize - 1; if (!h->hist[prev] || mutt_strcmp (h->hist[prev], s) != 0) { - mutt_str_replace (&h->hist[h->last++], s); + str_replace (&h->hist[h->last++], s); if (h->last > HistSize - 1) h->last = 0; }