Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix kernel method for 'Remove' with one argument #766

Merged
merged 2 commits into from
Apr 29, 2016

Commits on Apr 27, 2016

  1. Fix kernel method for 'Remove' with one argument

    This fixes the following problem (reported to the support list):
    gap> L:=[1,2,,,3];
    [ 1, 2,,, 3 ]
    gap> Remove(L);
    3
    gap> L;
    [ 1, 2,, ]
    
    that is, the length was not reduced to the position of the last bound entry.
    frankluebeck committed Apr 27, 2016
    Configuration menu
    Copy the full SHA
    26f207e View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2016

  1. Configuration menu
    Copy the full SHA
    89dd011 View commit details
    Browse the repository at this point in the history