Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -674,3 +674,5 @@ extern NODE *parent_list(NODE *);
extern void dbUsual(const char*);

#endif

void do_gc(BOOLEAN full);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this still needed?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed.

7 changes: 5 additions & 2 deletions intern.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,14 @@ FIXNUM hash(char *s, int len) {
}

NODE *make_case(NODE *casestrnd, NODE *obj) {
NODE *new_caseobj, *clistptr;
NODE *new_caseobj, *clistptr, *tmp;

tmp = cons(NIL, NIL);
clistptr = caselistptr__object(obj);
new_caseobj = make_caseobj(casestrnd, obj);
setcdr(clistptr, cons(new_caseobj, cdr(clistptr)));
setcar(tmp, new_caseobj);
setcdr(tmp, cdr(clistptr));
setcdr(clistptr, tmp);
return(new_caseobj);
}

Expand Down