Backed out changeset 8e119f847f97 (build busted)

This commit is contained in:
David Anderson
2010-11-11 11:19:42 -08:00
parent f73bb91440
commit 9ab38e165d
49 changed files with 574 additions and 794 deletions

View File

@@ -90,9 +90,9 @@ JS_STATIC_ASSERT((1 + 2) * sizeof(JSAtom *) ==
offsetof(JSAtomState, typeAtoms) - ATOM_OFFSET_START);
const char *
js_AtomToPrintableString(JSContext *cx, JSAtom *atom, JSAutoByteString *bytes)
js_AtomToPrintableString(JSContext *cx, JSAtom *atom)
{
return js_ValueToPrintable(cx, StringValue(ATOM_TO_STRING(atom)), bytes);
return js_ValueToPrintableString(cx, StringValue(ATOM_TO_STRING(atom)));
}
#define JS_PROTO(name,code,init) const char js_##name##_str[] = #name;