mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 14:19:18 +02:00
commenting out name used for debugging stack references into the heap
This commit is contained in:
parent
62c390d68e
commit
e50950316f
1 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ typedef sexp (*sexp_proc7) (sexp, sexp, sexp, sexp, sexp, sexp, sexp);
|
|||
|
||||
struct sexp_gc_var_t {
|
||||
sexp *var;
|
||||
char *name;
|
||||
/* char *name; */
|
||||
struct sexp_gc_var_t *next;
|
||||
};
|
||||
|
||||
|
@ -269,7 +269,7 @@ struct sexp_struct {
|
|||
#define sexp_gc_preserve(ctx, x, y) \
|
||||
do { \
|
||||
(y).var = &(x); \
|
||||
(y).name = #x; \
|
||||
/* (y).name = #x; */ \
|
||||
(y).next = sexp_context_saves(ctx); \
|
||||
sexp_context_saves(ctx) = &(y); \
|
||||
} while (0)
|
||||
|
|
Loading…
Add table
Reference in a new issue