On Sun, Feb 24, 2013 at 05:26:42PM +0200, Eli Zaretskii wrote:
> > 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

But then, there is still some trouble for the previous issue, namely a 
construct like

  @table @code
  @item xx @set f g
   ddd
  @end table

For that construct to be equivalent to

  @table @code
  @item xx  ddd
  @end table

@set is removed together with its end of line.  How should the two cases
be handled together?

-- 
Pat

Reply via email to