symtable: refactor for SV changes and propagate

This commit is contained in:
2026-02-11 07:48:28 +00:00
committed by oreodave
parent 3e7734037c
commit b91e79933b
3 changed files with 7 additions and 4 deletions

View File

@@ -71,7 +71,7 @@ lisp_t *make_vec(sys_t *sys, u64 capacity)
lisp_t *intern(sys_t *sys, sv_t sv)
{
char *str = sym_table_find(&sys->symtable, sv);
const char *str = sym_table_find(&sys->symtable, sv);
return tag_sym(str);
}