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

Realloc open blocks when deserializing #115

Merged
merged 2 commits into from
Nov 5, 2023

Commits on Sep 16, 2023

  1. Realloc open blocks when deserializing

    Previously deserializing assumed that open_blocks had enough capacity to
    deserialize all blocks. It appears that this is not always the case and
    that open blocks can overflow.
    
    This commit will realloc s->open_blocks if the current capacity is not
    big enough.
    
    Fixes tree-sitter-grammars#114
    Fixes neovim/neovim#25164
    ibash committed Sep 16, 2023
    Configuration menu
    Copy the full SHA
    ee0dac3 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2023

  1. Rebuild on x86

    Tree sitter generated parsers are different if you build on arm vs x86.
    This was causing the ci test to fail since I'm using an m1 mac, but the
    ci tests are using x86.
    
    Rebuilding in docker to fix that.
    ibash committed Sep 17, 2023
    2 Configuration menu
    Copy the full SHA
    110b89d View commit details
    Browse the repository at this point in the history