about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2016-06-22 15:17:11 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2016-06-22 19:49:48 +0200
commitee2f060ff7a8aff3dabfdb222f5f0ef394ee64b3 (patch)
tree7f1ed47317eb98143188a41a88812a2a670e5c9e /pkgs/development
parent1d98608e43f256fe48827458a6f5f7159bfc40db (diff)
downloadnixlib-ee2f060ff7a8aff3dabfdb222f5f0ef394ee64b3.tar
nixlib-ee2f060ff7a8aff3dabfdb222f5f0ef394ee64b3.tar.gz
nixlib-ee2f060ff7a8aff3dabfdb222f5f0ef394ee64b3.tar.bz2
nixlib-ee2f060ff7a8aff3dabfdb222f5f0ef394ee64b3.tar.lz
nixlib-ee2f060ff7a8aff3dabfdb222f5f0ef394ee64b3.tar.xz
nixlib-ee2f060ff7a8aff3dabfdb222f5f0ef394ee64b3.tar.zst
nixlib-ee2f060ff7a8aff3dabfdb222f5f0ef394ee64b3.zip
v8: remove unused fix-GetLocalizedMessage-usage.patch
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/v8/fix-GetLocalizedMessage-usage.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/development/libraries/v8/fix-GetLocalizedMessage-usage.patch b/pkgs/development/libraries/v8/fix-GetLocalizedMessage-usage.patch
deleted file mode 100644
index 3bc0fff4d509..000000000000
--- a/pkgs/development/libraries/v8/fix-GetLocalizedMessage-usage.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From dbe142c4eda0f15fad9fa85743dd11b81292fa8f Mon Sep 17 00:00:00 2001
-From: Timothy J Fontaine <tjfontaine@gmail.com>
-Date: Thu, 23 May 2013 13:57:59 -0700
-Subject: [PATCH] v8: fix GetLocalizedMessage usage
-
-As is the backport of the abort on uncaught exception wouldn't compile
-because we it was passing in `this` when it was unnecessary.
----
- deps/v8/src/isolate.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/isolate.cc b/src/isolate.cc
-index 04a438b..5a5293e 100644
---- a/src/isolate.cc
-+++ b/src/isolate.cc
-@@ -1161,7 +1161,7 @@ void Isolate::DoThrow(Object* exception, MessageLocation* location) {
-           (report_exception || can_be_caught_externally)) {
-         fatal_exception_depth++;
-         fprintf(stderr, "%s\n\nFROM\n",
--          *MessageHandler::GetLocalizedMessage(this, message_obj));
-+          *MessageHandler::GetLocalizedMessage(message_obj));
-         PrintCurrentStackTrace(stderr);
-         OS::Abort();
-       }
--- 
-1.8.1.6
-