Skip to content

Commit

Permalink
Enable list-goto-functions in clobber
Browse files Browse the repository at this point in the history
  • Loading branch information
peterschrammel committed Jan 12, 2018
1 parent d902ec8 commit b8cee29
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/clobber/clobber_parse_options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,15 @@ int clobber_parse_optionst::doit()
}

// show it?
if(cmdline.isset("show-goto-functions"))
if(
cmdline.isset("show-goto-functions") ||
cmdline.isset("list-goto-functions"))
{
show_goto_functions(goto_model, get_ui());
show_goto_functions(
goto_model,
get_message_handler(),
ui_message_handler.get_ui(),
cmdline.isset("list-goto-functions"));
return 6;
}

Expand Down

0 comments on commit b8cee29

Please sign in to comment.