0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-09-21 19:46:23 -04:00
This commit is contained in:
Kalle Olavi Niemitalo
2007-07-09 11:39:21 +03:00
committed by Kalle Olavi Niemitalo
106 changed files with 2274 additions and 4704 deletions

View File

@@ -18,6 +18,12 @@ struct view_state;
struct ecmascript_interpreter {
struct view_state *vs;
void *backend_data;
/* Nesting level of calls to backend functions. When this is
* nonzero, there are references to backend_data in the C
* stack, so it is not safe to free the data yet. */
int backend_nesting;
/* Used by document.write() */
struct string *ret;