summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-09 19:21:41 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-09 19:21:41 -0700
commitc9f9e9419a485b383da3229ca130fdd820db3f33 (patch)
treedeec25cdeca3370b86927f5ad97c152a9adb0e7f /lib.c
parentac71292135de0f3a18b7d462bcc9379c0fe142d9 (diff)
downloadtxr-c9f9e9419a485b383da3229ca130fdd820db3f33.tar.gz
txr-c9f9e9419a485b383da3229ca130fdd820db3f33.tar.bz2
txr-c9f9e9419a485b383da3229ca130fdd820db3f33.zip
Remove never-used member of symbol structure.
* lib.h (struct sym): Remove value member. * lib.c (make_sym): Don't initialize removed member. * gc.c (mark_obj): Do not mark removed member.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 7b3b2233..4a110875 100644
--- a/lib.c
+++ b/lib.c
@@ -3687,7 +3687,6 @@ val make_sym(val name)
obj->s.type = SYM;
obj->s.name = name;
obj->s.package = nil;
- obj->s.value = nil;
return obj;
}