diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-08-09 19:21:41 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-08-09 19:21:41 -0700 |
commit | c9f9e9419a485b383da3229ca130fdd820db3f33 (patch) | |
tree | deec25cdeca3370b86927f5ad97c152a9adb0e7f /lib.h | |
parent | ac71292135de0f3a18b7d462bcc9379c0fe142d9 (diff) | |
download | txr-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.h')
-rw-r--r-- | lib.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -103,7 +103,6 @@ struct sym { obj_common; val name; val package; - val value; }; struct package { |