We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d902ec8 commit b8cee29Copy full SHA for b8cee29
src/clobber/clobber_parse_options.cpp
@@ -136,9 +136,15 @@ int clobber_parse_optionst::doit()
136
}
137
138
// show it?
139
- if(cmdline.isset("show-goto-functions"))
+ if(
140
+ cmdline.isset("show-goto-functions") ||
141
+ cmdline.isset("list-goto-functions"))
142
{
- show_goto_functions(goto_model, get_ui());
143
+ show_goto_functions(
144
+ goto_model,
145
+ get_message_handler(),
146
+ ui_message_handler.get_ui(),
147
+ cmdline.isset("list-goto-functions"));
148
return 6;
149
150
0 commit comments