Parse all the various edge types.

This commit is contained in:
steve 2000-03-05 18:26:51 +00:00
parent 7b5b5c2f39
commit 1698a19cf6
1 changed files with 7 additions and 1 deletions

View File

@ -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.83 2000/02/23 02:56:55 steve Exp $" #ident "$Id: parse.y,v 1.84 2000/03/05 18:26:51 steve Exp $"
#endif #endif
# include "parse_misc.h" # include "parse_misc.h"
@ -2053,11 +2053,17 @@ udp_input_sym
| '?' { $$ = '?'; } | '?' { $$ = '?'; }
| 'b' { $$ = 'b'; } | 'b' { $$ = 'b'; }
| '*' { $$ = '*'; } | '*' { $$ = '*'; }
| '%' { $$ = '%'; }
| 'f' { $$ = 'f'; } | 'f' { $$ = 'f'; }
| 'F' { $$ = 'F'; }
| 'r' { $$ = 'r'; } | 'r' { $$ = 'r'; }
| 'R' { $$ = 'R'; }
| 'n' { $$ = 'n'; } | 'n' { $$ = 'n'; }
| 'N' { $$ = 'N'; }
| 'p' { $$ = 'p'; } | 'p' { $$ = 'p'; }
| 'P' { $$ = 'P'; }
| '_' { $$ = '_'; } | '_' { $$ = '_'; }
| '+' { $$ = '+'; }
; ;
udp_output_sym udp_output_sym