Skip to content
Snippets Groups Projects
Commit ccb4fabb authored by Lukas Stadler's avatar Lukas Stadler
Browse files

small fix to l10n_info()

parent 91db02a4
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ public class LocaleFunctions {
@RBuiltin(name = "l10n_info", kind = INTERNAL, parameterNames = {}, behavior = READS_STATE)
public abstract static class L10nInfo extends RBuiltinNode {
private static final RStringVector NAMES = RDataFactory.createStringVector(new String[]{"MBCS", "UTF-8", "LATIN-1"}, RDataFactory.COMPLETE_VECTOR);
private static final RStringVector NAMES = RDataFactory.createStringVector(new String[]{"MBCS", "UTF-8", "Latin-1"}, RDataFactory.COMPLETE_VECTOR);
@Specialization
protected RList l10nInfo() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment