Skip to content
Snippets Groups Projects
Commit fc5b7453 authored by rtoy's avatar rtoy
Browse files

Symbols use the unused slot for a hash value now.

parent fb89e8de
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/print.c,v 1.17 2005/02/07 22:10:07 rtoy Exp $ */ /* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/print.c,v 1.18 2005/02/07 22:18:35 rtoy Exp $ */
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
...@@ -381,7 +381,7 @@ static void print_slots(char **slots, int count, lispobj *ptr) ...@@ -381,7 +381,7 @@ static void print_slots(char **slots, int count, lispobj *ptr)
print_obj("???: ", *ptr++); print_obj("???: ", *ptr++);
} }
static char *symbol_slots[] = {"value: ", "unused: ", static char *symbol_slots[] = {"value: ", "hash: ",
"plist: ", "name: ", "package: ", NULL}; "plist: ", "name: ", "package: ", NULL};
static char *ratio_slots[] = {"numer: ", "denom: ", NULL}; static char *ratio_slots[] = {"numer: ", "denom: ", NULL};
static char *complex_slots[] = {"real: ", "imag: ", NULL}; static char *complex_slots[] = {"real: ", "imag: ", NULL};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment