EPICS Controls Argonne National Laboratory

Experimental Physics and
Industrial Control System

1994  1995  1996  1997  <19981999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  2019  2020  2021  2022  2023  2024  Index 1994  1995  1996  1997  <19981999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  2019  2020  2021  2022  2023  2024 
<== Date ==> <== Thread ==>

Subject: Sequencer parser fix
From: [email protected] (William Lupton)
To: [email protected]
Date: Wed, 10 Jun 1998 08:29:54 -1000
Dear all,

  Ron Chestnut found a sequencer parsing bug: pre-processor "#" lines were
not permitted between state set definitions. I have fixed this bug in Beta12.

  If you wish to fix this locally, you have to add a line to snc.y. The
section:

------------------------------------------------------------------------
state_set       /* define a state set */
:       STATE_SET NAME L_BRACKET state_list R_BRACKET
                                { $$ = expression(E_SS, $2, $4, 0); }
|       EXIT L_BRACKET stmt_list R_BRACKET
                                { exit_code($3); $$ = 0; }

|       error { snc_err("state set"); }
;
------------------------------------------------------------------------

has the blank line replaced to become:

------------------------------------------------------------------------
state_set       /* define a state set */
:       STATE_SET NAME L_BRACKET state_list R_BRACKET
                                { $$ = expression(E_SS, $2, $4, 0); }
|       EXIT L_BRACKET stmt_list R_BRACKET
                                { exit_code($3); $$ = 0; }
|       pp_code                 { $$ = 0; }
|       error { snc_err("state set"); }
;
------------------------------------------------------------------------

  William

Navigate by Date:
Prev: Re: Looking for statically built MEDM William P. McDowell
Next: records / device support (inc. soft) for writing arrays William Lupton
Index: 1994  1995  1996  1997  <19981999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  2019  2020  2021  2022  2023  2024 
Navigate by Thread:
Prev: Re: Looking for statically built MEDM William P. McDowell
Next: records / device support (inc. soft) for writing arrays William Lupton
Index: 1994  1995  1996  1997  <19981999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  2019  2020  2021  2022  2023  2024 
ANJ, 10 Aug 2010 Valid HTML 4.01! · Home · News · About · Base · Modules · Extensions · Distributions · Download ·
· Search · EPICS V4 · IRMIS · Talk · Bugs · Documents · Links · Licensing ·