Fabian Zickgraf
Fabian Zickgraf
Put the following code in a file `test.g`: ``` SetPrintFormattingStatus( "*stdout*", false ); Display(x -> x); ``` and execute `gap test.g`. ### Observed behaviour The output is: ``` function (...
# Description This is a prototype of my suggestion in #4496. My setting is: I never want line wrapping (because I prefer to let my terminal wrap lines and do...
When creating a workspace and trying to load it with GAP 4.12, the following error occurs: ``` Panic in src/saveload.c:618: This workspace is not compatible with GAP kernel (4.12.0, present:...
Currently, the release tarballs (e.g. https://github.com/gap-system/gap/releases/download/v4.12.0/gap-4.12.0.tar.gz) contain user and group information: ``` drwx------ horn/110 0 2022-08-18 16:57 gap-4.12.0/pkg/ ``` If one blindly extracts the tarball, this is unexpected on a...
This might be a dupe of #3841, but I'm not sure. Feel free to close this issue if it is a dupe. ### Steps to reproduce Put the following piece...
**What I did** Made sure that properties with an empty value are actually set during the import. **How I did it** `$reader->isEmptyElement` seems to only work for self-closing tags (for...
Similar to Thrift commit [c34653f75106fbe20293ddfd5b07f74772891a6d](https://github.com/apache/thrift/commit/c34653f75106fbe20293ddfd5b07f74772891a6d). `generate_jl_struct` now really generates only the structs while `generate_jl_thrift_spec` generates the implementation. The former is called by `generate_forward_declaration` while the later is called as before,...
When debugging loops/recursion using break loops I often find myself in the following situation: I type some initial command which triggers a loop or recursion with an `Error` inside. Now...
Consider the following situation: ``` gap> SizeScreen([80]);; gap> Display(" →→→→→→→→→→→→→→→→→→→→→→→→→→→→"); →→→→→→→→→→→→→→→→→→→→→→→→→�\ �→→ ``` ### Observed behaviour GAP puts a linebreak between the bytes forming the UTF-8 character `→`. In particular,...
Since 2e850b0ec4b295af10d5adeac0ac3d74189d155c, at most two indices in "[]" are allowed. Handling the two possible cases explicitly allows to simplify some parts of the code and makes one's life easier when...