X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=history.c;h=ba01d514bb51d64789e2b6644d05b144dc04f8cd;hb=8b255111bb546b00ed51806dee7104f224496f21;hp=7323c77f77705161fa8a540f2b0a3534e2dd9d0c;hpb=c3e57678c8be193fc137854020f3a90887be97c9;p=apps%2Fmadmutt.git 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; }