You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by va...@apache.org on 2009/06/18 03:47:17 UTC

svn commit: r785874 - in /lucene/pylucene/trunk/jcc: CHANGES README jcc/cpp.py

Author: vajda
Date: Thu Jun 18 01:47:16 2009
New Revision: 785874

URL: http://svn.apache.org/viewvc?rev=785874&view=rev
Log:
added 'typeof' to reserved word list

Modified:
    lucene/pylucene/trunk/jcc/CHANGES
    lucene/pylucene/trunk/jcc/README
    lucene/pylucene/trunk/jcc/jcc/cpp.py

Modified: lucene/pylucene/trunk/jcc/CHANGES
URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=785874&r1=785873&r2=785874&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/CHANGES (original)
+++ lucene/pylucene/trunk/jcc/CHANGES Thu Jun 18 01:47:16 2009
@@ -1,4 +1,9 @@
 
+Version 2.3 ->
+------------------
+ - added 'typeof' to reserved word list
+ - 
+
 Version 2.2 -> 2.3
 ------------------
  - fixed Solaris compilation issue with using va_arg() with function pointers

Modified: lucene/pylucene/trunk/jcc/README
URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/README?rev=785874&r1=785873&r2=785874&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/README (original)
+++ lucene/pylucene/trunk/jcc/README Thu Jun 18 01:47:16 2009
@@ -1,2 +1,6 @@
 
-Please see doc/jcc/documentation/readme.html
+If you obtained JCC with a PyLucene source archive, please see
+    doc/jcc/documentation/readme.html
+
+If you obtained JCC from http://www.python.org/pypi, please see
+    http://lucene.apache.org/pylucene/jcc/documentation/readme.html

Modified: lucene/pylucene/trunk/jcc/jcc/cpp.py
URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc/cpp.py?rev=785874&r1=785873&r2=785874&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/jcc/cpp.py (original)
+++ lucene/pylucene/trunk/jcc/jcc/cpp.py Thu Jun 18 01:47:16 2009
@@ -70,7 +70,7 @@
                'void': 'V' }
 
 RESERVED = set(['delete', 'and', 'or', 'not', 'xor', 'union', 'NULL',
-                'register', 'const', 'bool', 'operator'])
+                'register', 'const', 'bool', 'operator', 'typeof'])
 
 def cppname(name):