X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=help.c;h=f01bbea58f9eff5e3e2c4f69b8b3df6954103ee9;hp=d0617436bfd9494bdefdb62f49cd84fe611232c0;hb=ae0ce4dfcafa0c3820f107c5bfa8bd06e5272b57;hpb=0f44dc85fc1280372ffab911d701e703d803fb4b diff --git a/help.c b/help.c index d061743..f01bbea 100644 --- a/help.c +++ b/help.c @@ -13,8 +13,9 @@ # include "config.h" #endif -#include "lib/intl.h" -#include "lib/str.h" +#include +#include +#include #include "mutt.h" #include "mutt_curses.h" @@ -22,6 +23,7 @@ #include "pager.h" #include "mapping.h" +#include #include #include @@ -71,7 +73,7 @@ char *mutt_compile_help (char *buf, size_t buflen, int menu, buflen -= 2; } mutt_make_help (pbuf, buflen, _(items[i].name), menu, items[i].value); - len = safe_strlen (pbuf); + len = m_strlen(pbuf); pbuf += len; buflen -= len; } @@ -84,11 +86,11 @@ static int print_macro (FILE * f, int maxwidth, const char **macro) wchar_t wc; int w; size_t k; - size_t len = safe_strlen (*macro); + size_t len = m_strlen(*macro); mbstate_t mbstate1, mbstate2; - memset (&mbstate1, 0, sizeof (mbstate1)); - memset (&mbstate2, 0, sizeof (mbstate2)); + p_clear(&mbstate1, 1); + p_clear(&mbstate2, 1); for (; len && (k = mbrtowc (&wc, *macro, len, &mbstate1)); *macro += k, len -= k) { if (k == (size_t) (-1) || k == (size_t) (-2)) { @@ -167,18 +169,18 @@ static void format_line (FILE * f, int ismacro, else { col_a = COLS > 83 ? (COLS - 32) >> 2 : 12; col_b = COLS > 49 ? (COLS - 10) >> 1 : 19; - col = pad (f, safe_strlen (t1), col_a); + col = pad (f, m_strlen(t1), col_a); } if (ismacro > 0) { - if (!safe_strcmp (Pager, "builtin")) + if (!m_strcmp(Pager, "builtin")) fputs ("_\010", f); fputs ("M ", f); col += 2; if (!split) { col += print_macro (f, col_b - col - 4, &t2); - if (safe_strlen (t2) > col_b - col) + if (m_strlen(t2) > col_b - col) t2 = "..."; } } @@ -201,7 +203,7 @@ static void format_line (FILE * f, int ismacro, SKIPWS (t3); /* FIXME: this is completely wrong */ - if ((n = safe_strlen (t3)) > COLS - col) { + if ((n = m_strlen(t3)) > COLS - col) { n = COLS - col; for (col_a = n; col_a > 0 && t3[col_a] != ' '; col_a--); if (col_a) @@ -212,7 +214,7 @@ static void format_line (FILE * f, int ismacro, print_macro (f, n, &t3); if (*t3) { - if (safe_strcmp (Pager, "builtin")) { + if (m_strcmp(Pager, "builtin")) { fputc ('\n', f); n = 0; } @@ -281,7 +283,7 @@ void mutt_help (int menu) { char t[_POSIX_PATH_MAX]; char buf[SHORT_STRING]; - char *desc; + const char *desc; FILE *f; struct binding_t *funcs;