aboutsummaryrefslogtreecommitdiffstats
path: root/dfilter-grammar.y
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-10-14 08:05:51 +0000
committerGuy Harris <guy@alum.mit.edu>1999-10-14 08:05:51 +0000
commit154265bd94c52a298592de63aa24506e298b24a2 (patch)
treec76bff11fad624b36449e57208ffda5f23917ae3 /dfilter-grammar.y
parent1655671f9a16cfb67dd39e455d7bdffece3aaa82 (diff)
Put back the "%expect 4" that I accidentally deleted.
svn path=/trunk/; revision=832
Diffstat (limited to 'dfilter-grammar.y')
-rw-r--r--dfilter-grammar.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/dfilter-grammar.y b/dfilter-grammar.y
index 39ac97f086..d06fd61f5e 100644
--- a/dfilter-grammar.y
+++ b/dfilter-grammar.y
@@ -3,7 +3,7 @@
/* dfilter-grammar.y
* Parser for display filters
*
- * $Id: dfilter-grammar.y,v 1.30 1999/10/13 06:01:04 guy Exp $
+ * $Id: dfilter-grammar.y,v 1.31 1999/10/14 08:05:51 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -160,6 +160,7 @@ dfilter *global_df = NULL;
%token <operand> TOK_AND TOK_OR TOK_NOT TOK_XOR
%token <operand> TOK_EQ TOK_NE TOK_GT TOK_GE TOK_LT TOK_LE
+%expect 4
%left TOK_AND
%left TOK_OR TOK_XOR
%nonassoc TOK_NOT