summaryrefslogtreecommitdiffstats
path: root/edit.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-12-08 09:55:29 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-12-08 09:55:29 +0000
commitb70defd0a77e1d74057ec3d90a0ab0fcb8e7ba24 (patch)
tree5f8db29279245f7e36381e3d0026583aa15a9fae /edit.c
parentf25e8306f95f3ac7763a666c8cbd184cd5da1b7c (diff)
Make the line editor utf-8 friendly. First take from Edmund Grimley
Evans.
Diffstat (limited to 'edit.c')
-rw-r--r--edit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/edit.c b/edit.c
index 005b915b..e8ef3559 100644
--- a/edit.c
+++ b/edit.c
@@ -232,7 +232,7 @@ static void be_edit_header (ENVELOPE *e, int force)
rfc822_write_address (tmp, sizeof (tmp), e->to);
if (!e->to || force)
{
- if (mutt_enter_string ((unsigned char *) tmp, sizeof (tmp), LINES-1, 4, 0) == 0)
+ if (mutt_enter_string (tmp, sizeof (tmp), LINES-1, 4, 0) == 0)
{
rfc822_free_address (&e->to);
e->to = mutt_parse_adrlist (e->to, tmp);
@@ -252,7 +252,7 @@ static void be_edit_header (ENVELOPE *e, int force)
{
addstr ("Subject: ");
strfcpy (tmp, e->subject ? e->subject: "", sizeof (tmp));
- if (mutt_enter_string ((unsigned char *) tmp, sizeof (tmp), LINES-1, 9, 0) == 0)
+ if (mutt_enter_string (tmp, sizeof (tmp), LINES-1, 9, 0) == 0)
mutt_str_replace (&e->subject, tmp);
addch ('\n');
}
@@ -262,7 +262,7 @@ static void be_edit_header (ENVELOPE *e, int force)
addstr ("Cc: ");
tmp[0] = 0;
rfc822_write_address (tmp, sizeof (tmp), e->cc);
- if (mutt_enter_string ((unsigned char *) tmp, sizeof (tmp), LINES-1, 4, 0) == 0)
+ if (mutt_enter_string (tmp, sizeof (tmp), LINES-1, 4, 0) == 0)
{
rfc822_free_address (&e->cc);
e->cc = mutt_parse_adrlist (e->cc, tmp);
@@ -279,7 +279,7 @@ static void be_edit_header (ENVELOPE *e, int force)
addstr ("Bcc: ");
tmp[0] = 0;
rfc822_write_address (tmp, sizeof (tmp), e->bcc);
- if (mutt_enter_string ((unsigned char *) tmp, sizeof (tmp), LINES-1, 5, 0) == 0)
+ if (mutt_enter_string (tmp, sizeof (tmp), LINES-1, 5, 0) == 0)
{
rfc822_free_address (&e->bcc);
e->bcc = mutt_parse_adrlist (e->bcc, tmp);
@@ -313,7 +313,7 @@ int mutt_builtin_editor (const char *path, HEADER *msg, HEADER *cur)
tmp[0] = 0;
while (!done)
{
- if (mutt_enter_string ((unsigned char *) tmp, sizeof (tmp), LINES-1, 0, 0) == -1)
+ if (mutt_enter_string (tmp, sizeof (tmp), LINES-1, 0, 0) == -1)
{
tmp[0] = 0;
continue;