shithub: libmujs

Download patch

ref: 2c24e194d423db1639a5ba6793aa36d3bfb1df3b
parent: 8e57b47c5d70376900cb3f9821bbfa6136d00078
author: Tor Andersson <tor.andersson@artifex.com>
date: Fri Mar 8 09:08:59 EST 2019

Issue #92: Remove unimplemented function.

--- a/docs/reference.html
+++ b/docs/reference.html
@@ -365,13 +365,12 @@
 
 <pre>
 int js_gettop(js_State *J);
-void js_settop(js_State *J, int idx); -- not implemented yet
 void js_pop(js_State *J, int n);
 void js_rot(js_State *J, int n);
 void js_copy(js_State *J, int idx);
 void js_remove(js_State *J, int idx);
-void js_insert(js_State *J, int idx); -- not implemented yet
-void js_replace(js_State* J, int idx); -- not implemented yet
+void js_insert(js_State *J, int idx);
+void js_replace(js_State* J, int idx);
 </pre>
 
 <h3>Comparisons and arithmetic</h3>
--- a/mujs.h
+++ b/mujs.h
@@ -193,7 +193,6 @@
 unsigned short js_touint16(js_State *J, int idx);
 
 int js_gettop(js_State *J);
-void js_settop(js_State *J, int idx);
 void js_pop(js_State *J, int n);
 void js_rot(js_State *J, int n);
 void js_copy(js_State *J, int idx);