commenting out name used for debugging stack references into the heap

This commit is contained in:
Alex Shinn 2009-10-14 10:42:10 +09:00
parent 62c390d68e
commit e50950316f

View file

@ -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)