Skip to content

Commit 40b2bbe

Browse files
Merge pull request #1786 from mohamed-barakat/TerminalCategory
fix in CAP_INTERNAL_CONSTRUCTOR_FOR_TERMINAL_CATEGORY
2 parents aef5533 + b5be2ff commit 40b2bbe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CAP/PackageInfo.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SetPackageInfo( rec(
1010

1111
PackageName := "CAP",
1212
Subtitle := "Categories, Algorithms, Programming",
13-
Version := "2025.07-09",
13+
Version := "2025.08-01",
1414
Date := (function ( ) if IsBound( GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE ) then return GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE; else return Concatenation( ~.Version{[ 1 .. 4 ]}, "-", ~.Version{[ 6, 7 ]}, "-01" ); fi; end)( ),
1515
License := "GPL-2.0-or-later",
1616

CAP/gap/TerminalCategory.gi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ InstallGlobalFunction( CAP_INTERNAL_CONSTRUCTOR_FOR_TERMINAL_CATEGORY,
4343
if info.return_type = "morphism" and IsList( info.with_given_without_given_name_pair ) and operation_name = info.with_given_without_given_name_pair[1] then
4444
if not info.with_given_without_given_name_pair[2] in list_of_operations_to_install then
4545
Add( list_of_operations_to_install, info.with_given_without_given_name_pair[2] );
46+
Add( skip, operation_name );
4647
fi;
4748
if IsBound( CAP_INTERNAL_METHOD_NAME_RECORD.(info.with_given_without_given_name_pair[2]).with_given_object_name ) then
48-
Add( skip, operation_name );
4949
Add( list_of_operations_to_install, CAP_INTERNAL_METHOD_NAME_RECORD.(info.with_given_without_given_name_pair[2]).with_given_object_name );
5050
fi;
5151
fi;

0 commit comments

Comments
 (0)