Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/6b9a2e3aba35ea890604356fcf888268667ab9c5
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/6b9a2e3aba35ea890604356fcf888268667ab9c5
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/6b9a2e3aba35ea890604356fcf888268667ab9c5

The branch, dsilvers/eventtarget has been updated
       via  6b9a2e3aba35ea890604356fcf888268667ab9c5 (commit)
      from  c0aadc56162e73509a1557e2cd69e2fd6125cf8f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=6b9a2e3aba35ea890604356fcf888268667ab9c5
commit 6b9a2e3aba35ea890604356fcf888268667ab9c5
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    Oops ' ' -> _

diff --git a/content/handlers/javascript/duktape/EventTarget.bnd 
b/content/handlers/javascript/duktape/EventTarget.bnd
index 9f7c91a..fb20883 100644
--- a/content/handlers/javascript/duktape/EventTarget.bnd
+++ b/content/handlers/javascript/duktape/EventTarget.bnd
@@ -43,8 +43,8 @@ static void event_target_push_listeners(duk_context *ctx) {
                /* ... listeners type ??? */
                duk_pop(ctx);
                duk_push_object(ctx);
-               duk dup(ctx, -2);
-               duk dup(ctx, -2);
+               duk_dup(ctx, -2);
+               duk_dup(ctx, -2);
                /* ... listeners type sublisteners type sublisteners */
                duk_put_prop(ctx, -5);
                /* ... listeners type sublisteners */


-----------------------------------------------------------------------

Summary of changes:
 content/handlers/javascript/duktape/EventTarget.bnd |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/handlers/javascript/duktape/EventTarget.bnd 
b/content/handlers/javascript/duktape/EventTarget.bnd
index 9f7c91a..fb20883 100644
--- a/content/handlers/javascript/duktape/EventTarget.bnd
+++ b/content/handlers/javascript/duktape/EventTarget.bnd
@@ -43,8 +43,8 @@ static void event_target_push_listeners(duk_context *ctx) {
                /* ... listeners type ??? */
                duk_pop(ctx);
                duk_push_object(ctx);
-               duk dup(ctx, -2);
-               duk dup(ctx, -2);
+               duk_dup(ctx, -2);
+               duk_dup(ctx, -2);
                /* ... listeners type sublisteners type sublisteners */
                duk_put_prop(ctx, -5);
                /* ... listeners type sublisteners */


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to