[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:42:21 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 5810034e29e025f81e1442b61c469aac1d5d4b45
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu May 15 20:47:10 2003 +0000

            Reviewed by Chris.
    
    	- fixed 3259673 - REGRESSION: marvel.com thinks I don't have the flash plugin any more
    
            * kjs/nodes.cpp:
            (ContinueNode::execute): Return a Continue completion, not a Break
    	completion, in the normal non-exception case.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4380 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 79d6338..45a8aad 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,13 @@
+2003-05-15  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Chris.
+
+	- fixed 3259673 - REGRESSION: marvel.com thinks I don't have the flash plugin any more
+
+        * kjs/nodes.cpp:
+        (ContinueNode::execute): Return a Continue completion, not a Break
+	completion, in the normal non-exception case.
+
 2003-05-12  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Darin.
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index 79d6338..45a8aad 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2003-05-15  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Chris.
+
+	- fixed 3259673 - REGRESSION: marvel.com thinks I don't have the flash plugin any more
+
+        * kjs/nodes.cpp:
+        (ContinueNode::execute): Return a Continue completion, not a Break
+	completion, in the normal non-exception case.
+
 2003-05-12  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Darin.
diff --git a/JavaScriptCore/kjs/nodes.cpp b/JavaScriptCore/kjs/nodes.cpp
index 7c85b23..c3327b2 100644
--- a/JavaScriptCore/kjs/nodes.cpp
+++ b/JavaScriptCore/kjs/nodes.cpp
@@ -2169,7 +2169,7 @@ Completion ContinueNode::execute(ExecState *exec)
 
   Value dummy;
   return exec->context().imp()->seenLabels()->contains(ident) ?
-    Completion(Break, dummy, ident) :
+    Completion(Continue, dummy, ident) :
     Completion(Throw,
 	       throwError(exec, SyntaxError, "Label %s not found in containing block. Can't continue.", ident));
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list