[texinfo.tex 2022-02-16.13]
Consider the following example ``` \input texinfo.tex @multitable @columnfractions 0.2 0.2 0.2 @item foofoo foofoo foofoo foofoo @tab barbar barbar barbar barbar @tab bazbaz bazbaz bazbaz bazbaz @end multitable @raggedright @multitable @columnfractions 0.2 0.2 0.2 @item foofoo foofoo foofoo foofoo @tab barbar barbar barbar barbar @tab bazbaz bazbaz bazbaz bazbaz @end multitable @end raggedright @bye ``` While `texi2pdf` produces the desired result, I get unnecessary warnings for the second table, which are counter-intuitive: ``` Underfull \hbox (badness 10000) in paragraph at lines 11--12 @textrm foofoo foofoo Underfull \hbox (badness 10000) in paragraph at lines 12--13 @textrm barbar bar-bar Underfull \hbox (badness 10000) in paragraph at lines 13--14 @textrm bazbaz bazbaz ``` Is there a chance to improve the definition of `@raggedright` (or `@multitable`) so that those warnings are suppressed? Or maybe I'm doing something wrong, and there is a better way to get ragged-right table columns? Werner