mid-kid
8 years ago
6 changed files with 49 additions and 19 deletions
@ -0,0 +1,10 @@ |
|||||
|
+++ js/src/jsarray.cpp
|
||||
|
@@ -830,6 +830,8 @@
|
||||
|
* a native object (possibly a slow array) that has indexed properties, |
||||
|
* return true. |
||||
|
*/ |
||||
|
+ if (obj == (void *)1) break;
|
||||
|
+
|
||||
|
if (!obj->isNative()) |
||||
|
return true; |
||||
|
if (obj->isIndexed()) |
@ -1,13 +0,0 @@ |
|||||
[Desktop Entry] |
|
||||
Version=1.0 |
|
||||
Name=Pale Moon Web Browser |
|
||||
Comment=Browse the World Wide Web |
|
||||
Keywords=Internet;WWW;Browser;Web;Explorer |
|
||||
Exec=palemoon %u |
|
||||
Terminal=false |
|
||||
X-MultipleArgs=false |
|
||||
Type=Application |
|
||||
Icon=palemoon |
|
||||
Categories=Network;WebBrowser;Internet |
|
||||
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;x-scheme-handler/chrome;video/webm;application/x-xpinstall; |
|
||||
StartupNotify=true |
|
@ -0,0 +1,26 @@ |
|||||
|
+++ common/modules/base.jsm
|
||||
|
@@ -378,9 +378,6 @@
|
||||
|
this.constructor.className ? this.constructor.className + "#" : |
||||
|
""; |
||||
|
|
||||
|
- deprecated.warn(func,
|
||||
|
- obj + (fn.realName || fn.name || name || "").replace(/__/g, "."),
|
||||
|
- alternative);
|
||||
|
return func.apply(this, arguments); |
||||
|
} |
||||
|
if (func.name) |
||||
|
+++ disable-deprecated.patch
|
||||
|
@@ -0,0 +1,13 @@
|
||||
|
+diff -Nur ../pentadactyl-pm-pentadactyl-1.2pre-pm-3/common/modules/base.jsm ./common/modules/base.jsm
|
||||
|
+--- ../pentadactyl-pm-pentadactyl-1.2pre-pm-3/common/modules/base.jsm 2017-01-23 03:13:03.000000000 +0100
|
||||
|
++++ ./common/modules/base.jsm 2017-03-19 01:48:11.357447546 +0100
|
||||
|
+@@ -378,9 +378,6 @@
|
||||
|
+ this.constructor.className ? this.constructor.className + "#" :
|
||||
|
+ "";
|
||||
|
+
|
||||
|
+- deprecated.warn(func,
|
||||
|
+- obj + (fn.realName || fn.name || name || "").replace(/__/g, "."),
|
||||
|
+- alternative);
|
||||
|
+ return func.apply(this, arguments);
|
||||
|
+ }
|
||||
|
+ if (func.name)
|
Loading…
Reference in new issue