Index: gdb/mi/mi-symbol-cmds.c |
diff --git a/gdb/mi/mi-symbol-cmds.c b/gdb/mi/mi-symbol-cmds.c |
index 7feb02435d76a94dc8a6220c0eb43711f07768a7..2fdea910a4a7beac44e9082dc61b0d1d7d9c222c 100644 |
--- a/gdb/mi/mi-symbol-cmds.c |
+++ b/gdb/mi/mi-symbol-cmds.c |
@@ -22,11 +22,9 @@ |
#include "objfiles.h" |
#include "ui-out.h" |
-/* SYMBOL-LIST-LINES: |
- |
- Print the list of all pc addresses and lines of code for |
- the provided (full or base) source file name. The entries |
- are sorted in ascending PC order. */ |
+/* Print the list of all pc addresses and lines of code for the |
+ provided (full or base) source file name. The entries are sorted |
+ in ascending PC order. */ |
void |
mi_cmd_symbol_list_lines (char *command, char **argv, int argc) |
@@ -47,9 +45,9 @@ mi_cmd_symbol_list_lines (char *command, char **argv, int argc) |
if (s == NULL) |
error (_("-symbol-list-lines: Unknown source file name.")); |
- /* Now, dump the associated line table. The pc addresses are already |
- sorted by increasing values in the symbol table, so no need to |
- perform any other sorting. */ |
+ /* Now, dump the associated line table. The pc addresses are |
+ already sorted by increasing values in the symbol table, so no |
+ need to perform any other sorting. */ |
gdbarch = get_objfile_arch (s->objfile); |
cleanup_stack = make_cleanup_ui_out_list_begin_end (uiout, "lines"); |