fork of kakoune (nix, some minor patches)
Go to file
Maxime Coste 4b38cd3cd0 utils: add auto_raii helper function
this helper permits to register a resource and cleanup function to keep
exception safety with C like resource. For exemple, to be sure that a
FILE* will be closed, you can use:

auto file = auto_raii(fopen("filename"), fclose);

file will auto cast to FILE* when needed, and will call fclose when
going out of scope.
2011-09-14 15:36:35 +00:00
src utils: add auto_raii helper function 2011-09-14 15:36:35 +00:00
.gitignore gitignore: ignore tags file 2011-09-09 13:04:02 +00:00
GOALS Initial commit 2011-09-02 16:51:20 +00:00
IDEAS Initial commit 2011-09-02 16:51:20 +00:00