diff options
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/commands.h b/src/commands.h index d91b7345a..9cfb87d98 100644 --- a/src/commands.h +++ b/src/commands.h @@ -52,7 +52,6 @@ struct CommandInfo final namespace Commands { decHandler(hack); - decHandler(error) __attribute__ ((noreturn)); decHandler(url); decHandler(open); decHandler(dumpGraphics); @@ -84,8 +83,7 @@ namespace Commands enum { - COMMAND_ERROR = 0, - COMMAND_DUMPG, + COMMAND_DUMPG = 0, COMMAND_DUMPE, COMMAND_DUMPT, COMMAND_DUMPOGL, @@ -116,7 +114,6 @@ enum static const CommandInfo commands[] = { - {"error", &Commands::error, -1, false}, {"dumpg", &Commands::dumpGraphics, -1, false}, {"dumpe", &Commands::dumpEnvironment, -1, false}, {"dumpt", &Commands::dumpTests, -1, false}, |