From 7d36545d33e73b46bf4e08f84548aea01c9f74c4 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 24 Nov 2003 05:28:10 +0000 Subject: give far more detail in the EPMAPPER results (This used to be commit 420301969820ffaa0a87b091c7a79372c99cb658) --- source4/build/pidl/idl.gram | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/build/pidl') diff --git a/source4/build/pidl/idl.gram b/source4/build/pidl/idl.gram index b79c771f98..5cba06f014 100644 --- a/source4/build/pidl/idl.gram +++ b/source4/build/pidl/idl.gram @@ -30,12 +30,12 @@ definition : cpp_prefix | function { $item[1] } | const { $item[1] } -const : 'const' identifier identifier '=' constant ';' +const : 'const' identifier identifier '=' anytext ';' {{ "TYPE" => "CONST", "DTYPE" => $item[3], "NAME" => $item[4], - "VALUE" => $item{constant} + "VALUE" => $item{anytext} }} | @@ -166,7 +166,7 @@ type : text: /[\w\s\..?-]*/ -text2: /[\|\w\s,\*\>\/\..?-]*/ +text2: /[\|\w\s,\*\>"\/\..?-]*/ anytext: text2 '(' anytext ')' anytext {{ "$item[1]($item[4])$item[6]" }} -- cgit