{
if (pkg == f_lisp.findPackage("KEYWORD"))
{
String newString = symbolString.toStringSimple().toUpperCase();
// Symbols must be uppercase
newSymbol = f_lisp.makeKeyword(new StandardLispString(f_lisp, newString));
}
else
newSymbol = f_lisp.makeSymbol(symbolString);
return intern(symbolString, newSymbol, pkg);