summaryrefslogtreecommitdiffstats
path: root/compose.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-06-21 09:55:24 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-06-21 09:55:24 +0000
commitf7d932671ea60ad830ad19d1ff33c9e21d54746b (patch)
treeb5fe46737161dde82d9fbd11a0f3a0bda509ed2d /compose.c
parent16d4ae33347f6ab01c5b1c23a11bdf81df2ff30f (diff)
More character set clean-up.
Diffstat (limited to 'compose.c')
-rw-r--r--compose.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/compose.c b/compose.c
index 3775cbd7..86c1466d 100644
--- a/compose.c
+++ b/compose.c
@@ -262,7 +262,7 @@ check_attachments(ATTACHPTR **idx, short idxlen)
pretty, i+1);
if((r = mutt_yesorno(msg, M_YES)) == M_YES)
- mutt_update_encoding(idx[i]->content, NULL);
+ mutt_update_encoding(idx[i]->content);
else if(r == -1)
return -1;
}
@@ -598,7 +598,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
if (Editor && (mutt_strcmp ("builtin", Editor) != 0) && !option (OPTEDITHDRS))
{
mutt_edit_file (Editor, msg->content->filename);
- mutt_update_encoding (msg->content, NULL);
+ mutt_update_encoding (msg->content);
menu->redraw = REDRAW_CURRENT | REDRAW_STATUS;
break;
}
@@ -618,7 +618,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
code below to regenerate the index array */
mutt_builtin_editor (msg->content->filename, msg, cur);
}
- mutt_update_encoding (msg->content, NULL);
+ mutt_update_encoding (msg->content);
/* attachments may have been added */
if (idxlen && idx[idxlen - 1]->content->next)
@@ -883,13 +883,13 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
for (top = msg->content; top; top = top->next)
{
if (top->tagged)
- mutt_update_encoding (top, NULL);
+ mutt_update_encoding (top);
}
menu->redraw = REDRAW_FULL;
}
else
{
- mutt_update_encoding(idx[menu->current]->content, NULL);
+ mutt_update_encoding(idx[menu->current]->content);
menu->redraw = REDRAW_CURRENT | REDRAW_STATUS;
}
break;
@@ -906,7 +906,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
mutt_edit_content_type (NULL, idx[menu->current]->content);
/* this may have been a change to text/something */
- mutt_update_encoding (idx[menu->current]->content, NULL);
+ mutt_update_encoding (idx[menu->current]->content);
menu->redraw = REDRAW_CURRENT;
}
@@ -961,7 +961,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
CHECK_COUNT;
mutt_edit_file ((!Editor || mutt_strcmp ("builtin", Editor) == 0) ? NONULL(Visual) : NONULL(Editor),
idx[menu->current]->content->filename);
- mutt_update_encoding (idx[menu->current]->content, NULL);
+ mutt_update_encoding (idx[menu->current]->content);
menu->redraw = REDRAW_CURRENT | REDRAW_STATUS;
break;
@@ -1091,7 +1091,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
if (mutt_compose_attachment (idx[menu->current]->content))
{
- mutt_update_encoding (idx[menu->current]->content, NULL);
+ mutt_update_encoding (idx[menu->current]->content);
menu->redraw = REDRAW_FULL;
}
}
@@ -1101,7 +1101,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
CHECK_COUNT;
if (mutt_edit_attachment (idx[menu->current]->content))
{
- mutt_update_encoding (idx[menu->current]->content, NULL);
+ mutt_update_encoding (idx[menu->current]->content);
menu->redraw = REDRAW_FULL;
}
break;
@@ -1176,7 +1176,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
mutt_error (_("Error running \"%s\"!"), buf);
else
{
- mutt_update_encoding (msg->content, NULL);
+ mutt_update_encoding (msg->content);
menu->redraw |= REDRAW_STATUS;
}
break;