From a4a0ba670dfb340baca380b874630224e7fdcc38 Mon Sep 17 00:00:00 2001 From: steve Date: Mon, 15 Nov 1999 04:43:52 +0000 Subject: [PATCH] Allow qualified identifiers. They really do work. --- parse.y | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/parse.y b/parse.y index c10ac832b..0bc08b90a 100644 --- a/parse.y +++ b/parse.y @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) -#ident "$Id: parse.y,v 1.75 1999/11/05 19:36:36 steve Exp $" +#ident "$Id: parse.y,v 1.76 1999/11/15 04:43:52 steve Exp $" #endif # include "parse_misc.h" @@ -874,8 +874,7 @@ identifier : IDENTIFIER { $$ = $1; } | HIDENTIFIER - { yyerror(@1, "sorry: qualified identifiers not supported."); - $$ = $1; + { $$ = $1; } ;