Working on editing materials

This commit is contained in:
2026-03-11 22:03:32 -04:00
parent 0e79b02307
commit 2e058035f3
102 changed files with 428 additions and 463 deletions

View File

@@ -1720,7 +1720,6 @@ p_thread(Info *info) { /* ... thread */
/* Write general information. */
WRITE_VALUE(thread->status, uint8_t);
WRITE_VALUE(thread->nextid, uint64_t);
WRITE_VALUE(eris_savestackidx(thread,
eris_restorestack(thread, thread->errfunc)), size_t);
/* These are only used while a thread is being executed or can be deduced:
@@ -1887,7 +1886,6 @@ u_thread(Info *info) { /* ... */
/* Read general information. */
thread->status = READ_VALUE(uint8_t);
thread->nextid = READ_VALUE(uint64_t);
thread->errfunc = eris_savestack(thread,
eris_restorestackidx(thread, READ_VALUE(size_t)));
if (thread->errfunc) {

View File

@@ -206,7 +206,6 @@ static void preinit_state (lua_State *L, global_State *g) {
L->nny = 1;
L->status = LUA_OK;
L->errfunc = 0;
L->nextid = 0;
}