svn commit: samba r10014 - in branches/SAMBA_4_0/source/pidl: .

jelmer at samba.org jelmer at samba.org
Sat Sep 3 22:57:31 GMT 2005


Author: jelmer
Date: 2005-09-03 22:57:30 +0000 (Sat, 03 Sep 2005)
New Revision: 10014

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=10014

Log:
Support ?, : and = in attribute arguments.

Modified:
   branches/SAMBA_4_0/source/pidl/idl.yp


Changeset:
Modified: branches/SAMBA_4_0/source/pidl/idl.yp
===================================================================
--- branches/SAMBA_4_0/source/pidl/idl.yp	2005-09-03 22:56:02 UTC (rev 10013)
+++ branches/SAMBA_4_0/source/pidl/idl.yp	2005-09-03 22:57:30 UTC (rev 10014)
@@ -286,6 +286,9 @@
     | 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]" }



More information about the samba-cvs mailing list