Skip to content

Commit

Permalink
kernel: whitespace tweak to help IMMUTABLE conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Nov 20, 2018
1 parent 933b0b5 commit 14a3e89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/objset.c
Original file line number Diff line number Diff line change
Expand Up @@ -1023,9 +1023,9 @@ static Obj FuncOBJ_MAP_KEYS(Obj self, Obj map)
*V BagNames . . . . . . . . . . . . . . . . . . . . . . . list of bag names
*/
static StructBagNames BagNames[] = {
{ T_OBJSET, "object set" },
{ T_OBJSET , "object set" },
{ T_OBJSET+IMMUTABLE, "immutable object set" },
{ T_OBJMAP, "object map" },
{ T_OBJMAP , "object map" },
{ T_OBJMAP+IMMUTABLE, "immutable object map" },
{ -1, "" }
};
Expand Down
2 changes: 1 addition & 1 deletion src/precord.c
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ static Int InitKernel (
IsCopyableObjFuncs[ T_PREC +IMMUTABLE ] = AlwaysYes;

#ifdef USE_THREADSAFE_COPYING
SetTraversalMethod(T_PREC, TRAVERSE_BY_FUNCTION, TraversePRecord, CopyPRecord);
SetTraversalMethod(T_PREC , TRAVERSE_BY_FUNCTION, TraversePRecord, CopyPRecord);
SetTraversalMethod(T_PREC +IMMUTABLE, TRAVERSE_BY_FUNCTION, TraversePRecord, CopyPRecord);
#else
/* install into copy function tables */
Expand Down

0 comments on commit 14a3e89

Please sign in to comment.