From 774f884b2d97776ba8459a2d6199ac43e1a305fd Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Tue, 5 Jul 2005 06:28:03 +0000 Subject: [PATCH] *** empty log message *** --- ase/stx/symbol.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ase/stx/symbol.c b/ase/stx/symbol.c index 179b7d1f..777cbb42 100644 --- a/ase/stx/symbol.c +++ b/ase/stx/symbol.c @@ -1,5 +1,5 @@ /* - * $Id: symbol.c,v 1.11 2005-07-05 06:26:33 bacon Exp $ + * $Id: symbol.c,v 1.12 2005-07-05 06:28:03 bacon Exp $ */ #include @@ -9,16 +9,11 @@ xp_word_t xp_stx_new_symlink (xp_stx_t* stx, xp_word_t sym) { xp_word_t x; - xp_word_t data[] = { stx->nil, sym }; - /* x = xp_stx_alloc_word_object (stx, XP_NULL, XP_STX_SYMLINK_SIZE); XP_STX_CLASS(stx,x) = stx->class_symlink; XP_STX_WORDAT(stx,x,XP_STX_SYMLINK_LINK) = stx->nil; XP_STX_WORDAT(stx,x,XP_STX_SYMLINK_SYMBOL) = sym; - */ - x = xp_stx_alloc_word_object (stx, data, XP_STX_SYMLINK_SIZE); - XP_STX_CLASS(stx,x) = stx->class_symlink; return x; }