From c5fbb7824414fb8ce286a1e1b358c442a8d5de12 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 3 Sep 2005 22:57:30 +0000 Subject: r10014: Support ?, : and = in attribute arguments. (This used to be commit 6a549f35583e71531bea56ce717635ad9499441a) --- source4/pidl/idl.yp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source4/pidl/idl.yp') diff --git a/source4/pidl/idl.yp b/source4/pidl/idl.yp index d5838d0c43..1e101106ec 100644 --- a/source4/pidl/idl.yp +++ b/source4/pidl/idl.yp @@ -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]" } -- cgit