Clara Engler
Clara Engler
This commit replaces a self-made character check for alphanumeric characters within imap_is_bchar() with the ISALNUM() macro, as it is reduces the size of the code and makes the performance better,...
This commit splits the branch-heavy resolve_new() function into various sub-functions, in order to reduce the amount of nested if/else-statements. Beside this, it also removes many else-sequences, by returning in the...
This commit adds more comments to the getparameter() functions and its associated structures. Beside this, it also refactors certain parts of the code that were unclear to the commit author...
See https://github.com/microsoft/vscode/issues/104812
~Based on #9745~ This commit implements support to the file:// protocol for directory listings, similar to FTP. Directory entries are printed as follows: `MODE SIZE MTIME NAME` An example directory...
This commit refactors the file_do() function, by placing much of the logic into a separate function called fetch_file(), which in turn contains a partially refactored version of the previous code...
This commit replaces the `xlibWrapper` dependency found inside the nix-shell, as it has been removed within NixOS 23.05. Fixes #19286
based upon #1485. Please read the commit messages for more details.
This commit implements support for PTRACE_SYSEMU and PTRACE_SYSEMU_SINGLESTEP for x86 and x86_64 musl builds. In the future, this could even be extended to other architectures, for which musl provides support,...