diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-09 01:33:35 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-09 01:33:35 -0700 |
commit | 35d1a8c887ce53ad6326f96ad54b684a1a014e5f (patch) | |
tree | c12d767eb58e56fa9f2fc66d574fab201215f2e2 | |
parent | ac73049fb67deda1470dd420cae3a0353c40550c (diff) |
stack.c.gen: MISC: Rename AppPlugin to CmdPlugin
-rwxr-xr-x | build-aux/stack.c.gen | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/stack.c.gen b/build-aux/stack.c.gen index 60f51fe..095a992 100755 --- a/build-aux/stack.c.gen +++ b/build-aux/stack.c.gen @@ -404,7 +404,7 @@ class PluginApplication: # Application-specific code -class AppPlugin: +class CmdPlugin: def is_intrhandler(self, name: str) -> bool: return False @@ -1151,7 +1151,7 @@ def main( return 0 plugins += [ - AppPlugin(), + CmdPlugin(), LibObjPlugin(arg_c_fnames), LibHWPlugin(arg_pico_platform), LibCRPlugin(), |