From 2c24e194d423db1639a5ba6793aa36d3bfb1df3b Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 8 Mar 2019 14:08:59 +0100 Subject: [PATCH] Issue #92: Remove unimplemented function. --- docs/reference.html | 5 ++--- mujs.h | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/reference.html b/docs/reference.html index 31eb362..48b2850 100644 --- a/docs/reference.html +++ b/docs/reference.html @@ -365,13 +365,12 @@ Wrapper to push a new error object on the stack using a printf formatting string
 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);
 

Comparisons and arithmetic

diff --git a/mujs.h b/mujs.h index 075ad58..d5dcc93 100644 --- a/mujs.h +++ b/mujs.h @@ -193,7 +193,6 @@ short js_toint16(js_State *J, int idx); 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);