diff options
author | OKAZAKI Tetsurou <okazaki@FreeBSD.org> | 2008-07-08 18:03:31 +0000 |
---|---|---|
committer | OKAZAKI Tetsurou <okazaki@FreeBSD.org> | 2008-07-08 18:03:31 +0000 |
commit | a4c5e709a712d6ce7f7a58266a776a279d1e57c4 (patch) | |
tree | babba0ead957b137a602e3ff0dd1a3064b5a11da /lang/spidermonkey/files/patch-jscntxt.c | |
parent | Update to 2.8.16 (diff) |
Updates the port to Javascript 1.7.
Much thanks to Bernhard Fröhlich for doing the heavy lifting.
PR: 125191
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=216543
Diffstat (limited to 'lang/spidermonkey/files/patch-jscntxt.c')
-rw-r--r-- | lang/spidermonkey/files/patch-jscntxt.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lang/spidermonkey/files/patch-jscntxt.c b/lang/spidermonkey/files/patch-jscntxt.c deleted file mode 100644 index 91861d195eab..000000000000 --- a/lang/spidermonkey/files/patch-jscntxt.c +++ /dev/null @@ -1,11 +0,0 @@ ---- jscntxt.c.orig Sat Jan 14 01:57:13 2006 -+++ jscntxt.c Sat Jan 14 02:14:51 2006 -@@ -334,7 +334,7 @@ - { - const JSResolvingKey *key = (const JSResolvingKey *)ptr; - -- return ((JSDHashNumber)key->obj >> JSVAL_TAGBITS) ^ key->id; -+ return ((JSDHashNumber)JS_PTR_TO_UINT32(key->obj) >> JSVAL_TAGBITS) ^ key->id; - } - - JS_PUBLIC_API(JSBool) |