Thread (1 message) 1 message, 1 author, 2016-06-15

Re: [PATCH v4 02/13] column: add API to print items in columns

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:52:56

Nguyễn Thái Ngọc Duy  [off-list ref] writes:
+#define MODE(mode) ((mode) & COL_MODE)
+ ...
+void print_columns(const struct string_list *list, int mode,
+		   struct column_options *opts)
+{
+	const char *indent = "", *nl = "\n";
+	int padding = 1, width = term_columns();
+
+	if (!list->nr)
+		return;
+	if (opts) {
+		if (opts->indent)
+			indent = opts->indent;
+		if (opts->nl)
+			nl = opts->nl;
+		if (opts->width)
+			width = opts->width;
+		padding = opts->padding;
+	}
+	if (width <= 1 || !(mode & COL_ENABLED)) {
Unless there is a compelling reason not to, make a flag word used as
collection of bitfields an unsigned, i.e. not "int mode".
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help