summaryrefslogtreecommitdiffstats
path: root/help.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-11-10 22:14:00 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-11-10 22:14:00 +0000
commita3f726e35f1e7d918061074a85ebe7a2c7c300a5 (patch)
treed9ab2a281be2a13fbb1ec8682d4e5c7ff0502cde /help.c
parent912c6b0df82fe3a2745d68131db9300222226a73 (diff)
Introduce or rewrite mutt_{str*cmp,strlen} and use them all over the
place. If there are still segmentation faults due to missing NONULLs over, they are gone now.
Diffstat (limited to 'help.c')
-rw-r--r--help.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/help.c b/help.c
index 4defe764..bc9c4dc9 100644
--- a/help.c
+++ b/help.c
@@ -78,7 +78,7 @@ mutt_compile_help (char *buf, size_t buflen, int menu, struct mapping_t *items)
buflen -= 2;
}
mutt_make_help (pbuf, buflen, _(items[i].name), menu, items[i].value);
- len = strlen (pbuf);
+ len = mutt_strlen (pbuf);
pbuf += len;
buflen -= len;
}
@@ -176,12 +176,12 @@ static void format_line (FILE *f, int ismacro,
{
col_a = 12 + (COLS > 83 ? (COLS - 80) >> 2 : 0);
col_b = 19 + (COLS > 43 ? (COLS - 16) >> 2 : 0);
- col = pad (f, strlen(t1), col_a);
+ col = pad (f, mutt_strlen(t1), col_a);
}
if (ismacro > 0)
{
- if (!strcmp (Pager, "builtin"))
+ if (!mutt_strcmp (Pager, "builtin"))
fputs ("_\010", f);
fputs ("M ", f);
col += 2;
@@ -189,7 +189,7 @@ static void format_line (FILE *f, int ismacro,
if (!split)
{
col += print_macro (f, col_b - col - 4, &t2);
- if (strlen (t2) > col_b - col)
+ if (mutt_strlen (t2) > col_b - col)
t2 = "...";
}
}
@@ -215,7 +215,7 @@ static void format_line (FILE *f, int ismacro,
{
SKIPWS(t3);
- if ((n = strlen (t3)) > COLS - col)
+ if ((n = mutt_strlen (t3)) > COLS - col)
{
n = COLS - col;
for (col_a = n; col_a > 0 && t3[col_a] != ' '; col_a--) ;
@@ -228,7 +228,7 @@ static void format_line (FILE *f, int ismacro,
if (*t3)
{
- if (strcmp (Pager, "builtin"))
+ if (mutt_strcmp (Pager, "builtin"))
{
fputc ('\n', f);
n = 0;