summaryrefslogtreecommitdiff
path: root/source4/build/pidl/idl.gram
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-24 05:28:10 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-24 05:28:10 +0000
commit7d36545d33e73b46bf4e08f84548aea01c9f74c4 (patch)
tree36379a0162aaeb8b772203d7db4b0a2d5c88580d /source4/build/pidl/idl.gram
parent3114289c6434165a23996cb481dea619ee62d55f (diff)
downloadsamba-7d36545d33e73b46bf4e08f84548aea01c9f74c4.tar.gz
samba-7d36545d33e73b46bf4e08f84548aea01c9f74c4.tar.bz2
samba-7d36545d33e73b46bf4e08f84548aea01c9f74c4.zip
give far more detail in the EPMAPPER results
(This used to be commit 420301969820ffaa0a87b091c7a79372c99cb658)
Diffstat (limited to 'source4/build/pidl/idl.gram')
-rw-r--r--source4/build/pidl/idl.gram6
1 files changed, 3 insertions, 3 deletions
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' <commit> identifier identifier '=' constant ';'
+const : 'const' <commit> identifier identifier '=' anytext ';'
{{
"TYPE" => "CONST",
"DTYPE" => $item[3],
"NAME" => $item[4],
- "VALUE" => $item{constant}
+ "VALUE" => $item{anytext}
}}
| <error?>
@@ -166,7 +166,7 @@ type :
text: /[\w\s\..?-]*/
-text2: /[\|\w\s,\*\>\/\..?-]*/
+text2: /[\|\w\s,\*\>"\/\..?-]*/
anytext: text2 '(' <commit> anytext ')' anytext
{{ "$item[1]($item[4])$item[6]" }}