Skip to content

Commit 03ea054

Browse files
committed
Disable debug commands
For now, this isn't ready for release and shouldn't be in the command list. So until I can actually implement a more full featured debugger, `:info` will be disabled.
1 parent 400c13f commit 03ea054

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commands.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ static void handle_help(struct LacoState* laco, const char** arguments) {
2121
puts(
2222
" Commands available:\n\n"
2323
" :q, :quit Exit laco\n"
24-
" :?, :help Display this list of commands\n"
25-
" :info <name> Show information on given function"
24+
" :?, :help Display this list of commands"
25+
/* " :info <name> Show information on given function" */
2626
);
2727
}
2828

@@ -39,7 +39,7 @@ static const LacoCommand line_commands[] = {
3939
{ help_matches, handle_help },
4040

4141
/* Debugger commands */
42-
{ debug_info_matches, handle_debug_info },
42+
/* { debug_info_matches, handle_debug_info }, */
4343

4444
{ NULL, NULL }
4545
};

0 commit comments

Comments
 (0)