Lines Matching +full:max +full:- +full:reason

17 properly converted to a libxo-style format string.
35 The hn-* modifiers (hn-decimal, hn-space, hn-1000)
47 xo_emit("{T:Min} T{:Max}");
53 xo_emit("{T:Min} {T:Max}");
71 xo_emit("{:name/%6.6s %04d/%s-%d}", name, number);
83 xo_emit("{LT:Max}");
89 xo_emit("{T:Max}");
98 xo_emit("{T:%6.6s}\n", "Max");
104 xo_emit("{T:/%6.6s}\n", "Max");
117 xo_emit("{T:Max//%s}", "Max");
131 xo_emit("{N:Max/%6.6s}", "Max");
142 'Field has color without fg- or bg- (role: C)'
145 The message "Field has color without fg- or bg- (role: C)" can be caused by code like:
155 xo_emit("{C:fg-green}{:foo}{C:}", x);
157 Colors must be prefixed by either "fg-" or "bg-".
167 xo_emit("{C:fg-purple,bold}{:foo}{C:gween}", x);
173 xo_emit("{C:fg-red,bold}{:foo}{C:fg-green}", x);
178 be prefixed by either "fg-" or "bg-". Effects are
179 limited to bold, no-bold, underline, no-underline,
180 inverse, no-inverse, normal, and reset. Values must
203 'Field has hn-* modifier but not 'h' modifier'
206 The message "Field has hn-* modifier but not 'h' modifier" can be caused by code like:
210 xo_emit("{,hn-1000:value}", value);
216 xo_emit("{h,hn-1000:value}", value);
218 The hn-* modifiers (hn-decimal, hn-space, hn-1000)
235 xo_emit("{:tag-name/%s}", "value");
255 xo_emit("{:no-under-scores}", "bad");
269 xo_emit("{:10-gig/}");
275 xo_emit("{:ten-gig/}");
287 xo_emit("{:WHY-ARE-YOU-SHOUTING}", "NO REASON");
293 xo_emit("{:why-are-you-shouting}", "no reason");
313 xo_emit("{:something-meaningful}", "mumble");
330 xo_emit("{:cost-in-$$/%u}", 15);
336 xo_emit("{:cost-in-dollars/%u}", 15);
339 instead of "{]:}". Field names are restricted to lower-case
425 'Max width only valid for strings'
428 The message "Max width only valid for strings" can be caused by code like:
440 libxo allows a true 'max width' in addition to the traditional
441 printf-style 'max number of bytes to use for input'. But this
443 for non-strings. This error may occur from a typo,