Skip to content

Commit

Permalink
Use IS_CONSTRUCTOR instead of CONSTRUCTORS
Browse files Browse the repository at this point in the history
CONSTRUCTORS has been removed from the GAP master branch.
  • Loading branch information
alex-konovalov authored Jan 27, 2018
1 parent 16e9b41 commit 96e6a73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gap/tools/utils.gi
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ SEMIGROUPS.ManSectionType := function(op)
class := "Oper";
if IS_IDENTICAL_OBJ(op, IS_OBJECT) then
class := "Filt";
elif op in CONSTRUCTORS then
elif IS_CONSTRUCTOR(op) then
class := "Constructor";
# seem to never get one
elif IsFilter(op) then
Expand Down

0 comments on commit 96e6a73

Please sign in to comment.