Display without layout when not enabled */
| 102 | |
| 103 | /* Display without layout when not enabled */ |
| 104 | static void display_plain(const struct string_list *list, |
| 105 | const char *indent, const char *nl) |
| 106 | { |
| 107 | int i; |
| 108 | |
| 109 | for (i = 0; i < list->nr; i++) |
| 110 | printf("%s%s%s", indent, list->items[i].string, nl); |
| 111 | } |
| 112 | |
| 113 | /* Print a cell to stdout with all necessary leading/trailing space */ |
| 114 | static int display_cell(struct column_data *data, int initial_width, |