r10014: Support ?, : and = in attribute arguments.
authorJelmer Vernooij <jelmer@samba.org>
Sat, 3 Sep 2005 22:57:30 +0000 (22:57 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:36:29 +0000 (13:36 -0500)
(This used to be commit 6a549f35583e71531bea56ce717635ad9499441a)

source4/pidl/idl.yp

index d5838d0c437c77d2ab70329d76ada92279d04ab3..1e101106ec3c295a19cfa83b9c250c61f0c00369 100644 (file)
@@ -286,6 +286,9 @@ anytext:  #empty
     | anytext '|' anytext  { "$_[1]$_[2]$_[3]" }
     | anytext '&' anytext  { "$_[1]$_[2]$_[3]" }
     | anytext '/' anytext  { "$_[1]$_[2]$_[3]" }
+    | anytext '?' anytext  { "$_[1]$_[2]$_[3]" }
+    | anytext ':' anytext  { "$_[1]$_[2]$_[3]" }
+    | anytext '=' anytext  { "$_[1]$_[2]$_[3]" }
     | anytext '+' anytext  { "$_[1]$_[2]$_[3]" }
     | anytext '~' anytext  { "$_[1]$_[2]$_[3]" }
     | anytext '(' commalisttext ')' anytext  { "$_[1]$_[2]$_[3]$_[4]$_[5]" }