Skip to content

Commit b8cee29

Browse files
Enable list-goto-functions in clobber
1 parent d902ec8 commit b8cee29

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/clobber/clobber_parse_options.cpp

+8-2
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,15 @@ int clobber_parse_optionst::doit()
136136
}
137137

138138
// show it?
139-
if(cmdline.isset("show-goto-functions"))
139+
if(
140+
cmdline.isset("show-goto-functions") ||
141+
cmdline.isset("list-goto-functions"))
140142
{
141-
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"));
142148
return 6;
143149
}
144150

0 commit comments

Comments
 (0)