> Date: Sun, 24 Feb 2013 02:26:57 +0100 > From: Patrice Dumas <pertu...@free.fr> > > The following leads to an error, though: > > @table @code > @item xx @set n > @item jj > @end table > > f.texi:14: @item outside of table or list > f.texi:14: warning: @item should not appear in @item > > Indeed @item jj happens within '@item xx @set n' since the newline of > this @item line is ignored. > > Should the @set end of line be taken into account or not depending on > what comes next?
"@set ..." should be removed from text, but excluding the newline, so that the above should be processed exactly like this: @table @code @item xx @item jj @end table