RRichard Russontidy source
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
refactor: upgrade macro flags to enum flags Turn #define'd flags into enums. Enums provide: - debugger visibility - compiler diagnostics - symbol scoping by convention - easier navigation/search - cleaner documentation generation - type grouping Naming: - enum has singular ending, e.g. Flag - typedef wrapper has plural ending, e.g. Flags Suffix `_NO_FLAGS` has been renamed to `_NONE` for consistency. | 4 个月前 | |
tidy source - whitespace - doxygen comments | 1 个月前 | |
lua: move globals to LuaModuleData - Add lua_state (void*) to struct LuaModuleData - Enable init/cleanup in module.c - Remove global from lua.c - Update commands.c to use mod_data->lua_state - Remove extern declaration | 5 个月前 | |
module: tidy cleanup Pass the Module Data to the Module on cleanup() | 5 个月前 | |
module: add Notify object to each globals Add a 'struct Notify *notify' member to every ModuleData struct. Create it with notify_new() in each Module.init() function, set its parent to NeoMutt->notify, and free it in Module.cleanup(). For modules that previously had commented-out init/cleanup code, uncomment the mod_data allocation and deallocation. | 5 个月前 |