You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2009/12/01 03:15:12 UTC

svn commit: r885652 - /lucene/lucy/trunk/boilerplater/lib/Boilerplater/Binding/Perl/Class.pm

Author: marvin
Date: Tue Dec  1 02:15:06 2009
New Revision: 885652

URL: http://svn.apache.org/viewvc?rev=885652&view=rev
Log:
Switch out "Err_error" for "Lucy->error" in autogenerated Perl documentation.

Modified:
    lucene/lucy/trunk/boilerplater/lib/Boilerplater/Binding/Perl/Class.pm

Modified: lucene/lucy/trunk/boilerplater/lib/Boilerplater/Binding/Perl/Class.pm
URL: http://svn.apache.org/viewvc/lucene/lucy/trunk/boilerplater/lib/Boilerplater/Binding/Perl/Class.pm?rev=885652&r1=885651&r2=885652&view=diff
==============================================================================
--- lucene/lucy/trunk/boilerplater/lib/Boilerplater/Binding/Perl/Class.pm (original)
+++ lucene/lucy/trunk/boilerplater/lib/Boilerplater/Binding/Perl/Class.pm Tue Dec  1 02:15:06 2009
@@ -362,6 +362,9 @@
     # Change all instances of NULL to 'undef'
     $documentation =~ s/NULL/undef/g;
 
+    # Change "Err_error" to "Lucy->error".
+    $documentation =~ s/Err_error/Lucy->error/g;
+
     return $documentation;
 }