Typo saving third delay value in list.
This commit is contained in:
parent
fd09bc3e3e
commit
14d87e3e11
4
parse.y
4
parse.y
|
|
@ -19,7 +19,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
#if !defined(WINNT) && !defined(macintosh)
|
#if !defined(WINNT) && !defined(macintosh)
|
||||||
#ident "$Id: parse.y,v 1.98 2000/05/23 16:03:13 steve Exp $"
|
#ident "$Id: parse.y,v 1.99 2000/05/31 01:31:52 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# include "parse_misc.h"
|
# include "parse_misc.h"
|
||||||
|
|
@ -331,7 +331,7 @@ delay3
|
||||||
{ svector<PExpr*>*tmp = new svector<PExpr*>(3);
|
{ svector<PExpr*>*tmp = new svector<PExpr*>(3);
|
||||||
(*tmp)[0] = $3;
|
(*tmp)[0] = $3;
|
||||||
(*tmp)[1] = $5;
|
(*tmp)[1] = $5;
|
||||||
(*tmp)[1] = $7;
|
(*tmp)[2] = $7;
|
||||||
$$ = tmp;
|
$$ = tmp;
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue