Eliminate str2wcs

This commit is contained in:
ridiculousfish
2012-12-19 13:31:06 -08:00
parent b0a9a5a756
commit 644607c29f
16 changed files with 161 additions and 210 deletions

View File

@@ -724,9 +724,9 @@ rgb_color_t parse_color(const wcstring &val, bool is_background)
return result;
}
void output_set_term(const wchar_t *term)
void output_set_term(const wcstring &term)
{
current_term = term;
current_term.assign(term);
}
const wchar_t *output_get_term()