summaryrefslogtreecommitdiffstats
path: root/misc/charset_conv.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/charset_conv.c')
-rw-r--r--misc/charset_conv.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/misc/charset_conv.c b/misc/charset_conv.c
index c38c1fbd77..5c38cfad0e 100644
--- a/misc/charset_conv.c
+++ b/misc/charset_conv.c
@@ -106,7 +106,11 @@ const char *mp_charset_guess(void *talloc_ctx, struct mp_log *log, bstr buf,
{
mp_err(log, "This syntax for the --sub-codepage option was deprecated "
"and has been removed.\n");
- user_cp = "";
+ if (strncasecmp(user_cp, "utf8:", 5) == 0) {
+ user_cp = user_cp + 5;
+ } else {
+ user_cp = "";
+ }
}
if (user_cp[0] == '+') {