summaryrefslogtreecommitdiffstats
path: root/curs_lib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-05-12 10:20:40 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-05-12 10:20:40 +0000
commita3f23a32f1f781c5be559712b2dfbe584a510e58 (patch)
treed61443b33effe7135091a61e0eff8df499689c76 /curs_lib.c
parent507c87642d8a1a9327464e010beebcabe2da7a5d (diff)
wide-character related patches. From Edmund Grimley Evans.
Diffstat (limited to 'curs_lib.c')
-rw-r--r--curs_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/curs_lib.c b/curs_lib.c
index 104b929f..de0f72e9 100644
--- a/curs_lib.c
+++ b/curs_lib.c
@@ -470,7 +470,7 @@ int mutt_addwch (wchar_t wc)
char buf[6]; /* FIXME */
int n;
- n = mutt_wctomb (buf, wc);
+ n = wctomb (buf, wc);
if (n == -1)
return n;
else