From e50950316f3922fa631d2f48518f0bda79a9f538 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Wed, 14 Oct 2009 10:42:10 +0900 Subject: [PATCH] commenting out name used for debugging stack references into the heap --- include/chibi/sexp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/chibi/sexp.h b/include/chibi/sexp.h index 6d580e99..103d11db 100644 --- a/include/chibi/sexp.h +++ b/include/chibi/sexp.h @@ -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)