You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2016/03/20 18:48:33 UTC

lucy git commit: Adjust for Obj_to_Host changes

Repository: lucy
Updated Branches:
  refs/heads/master b9fba0dad -> d657bd167


Adjust for Obj_to_Host changes


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/d657bd16
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/d657bd16
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/d657bd16

Branch: refs/heads/master
Commit: d657bd1678ec81cfba11ae177bc8ffcc753d2cee
Parents: b9fba0d
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sun Mar 20 18:47:58 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sun Mar 20 18:47:58 2016 +0100

----------------------------------------------------------------------
 perl/buildlib/Lucy/Build/Binding/Misc.pm | 2 +-
 perl/buildlib/Lucy/Build/Binding/Util.pm | 2 +-
 perl/xs/Lucy/Analysis/RegexTokenizer.c   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/d657bd16/perl/buildlib/Lucy/Build/Binding/Misc.pm
----------------------------------------------------------------------
diff --git a/perl/buildlib/Lucy/Build/Binding/Misc.pm b/perl/buildlib/Lucy/Build/Binding/Misc.pm
index c87e2c2..11b14a6 100644
--- a/perl/buildlib/Lucy/Build/Binding/Misc.pm
+++ b/perl/buildlib/Lucy/Build/Binding/Misc.pm
@@ -59,7 +59,7 @@ PPCODE:
         LUCY_OutStream_Close(target);
         serialized_bb
             = LUCY_RAMFile_Get_Contents(LUCY_RAMFH_Get_File(file_handle));
-        retval = (SV*)CFISH_BB_To_Host(serialized_bb);
+        retval = (SV*)CFISH_BB_To_Host(serialized_bb, NULL);
         CFISH_DECREF(file_handle);
         CFISH_DECREF(target);
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/d657bd16/perl/buildlib/Lucy/Build/Binding/Util.pm
----------------------------------------------------------------------
diff --git a/perl/buildlib/Lucy/Build/Binding/Util.pm b/perl/buildlib/Lucy/Build/Binding/Util.pm
index 89a80e8..2b09173 100644
--- a/perl/buildlib/Lucy/Build/Binding/Util.pm
+++ b/perl/buildlib/Lucy/Build/Binding/Util.pm
@@ -157,7 +157,7 @@ latest_snapshot(folder)
 CODE:
 {
     cfish_String *latest = lucy_IxFileNames_latest_snapshot(folder);
-    RETVAL = (SV*)CFISH_Str_To_Host(latest);
+    RETVAL = (SV*)CFISH_Str_To_Host(latest, NULL);
     CFISH_DECREF(latest);
 }
 OUTPUT: RETVAL

http://git-wip-us.apache.org/repos/asf/lucy/blob/d657bd16/perl/xs/Lucy/Analysis/RegexTokenizer.c
----------------------------------------------------------------------
diff --git a/perl/xs/Lucy/Analysis/RegexTokenizer.c b/perl/xs/Lucy/Analysis/RegexTokenizer.c
index f8e5e36..b558875 100644
--- a/perl/xs/Lucy/Analysis/RegexTokenizer.c
+++ b/perl/xs/Lucy/Analysis/RegexTokenizer.c
@@ -85,7 +85,7 @@ S_compile_token_re(pTHX_ cfish_String *pattern) {
     SAVETMPS;
     EXTEND(SP, 1);
     PUSHMARK(SP);
-    XPUSHs((SV*)CFISH_Str_To_Host(pattern));
+    XPUSHs((SV*)CFISH_Str_To_Host(pattern, NULL));
     PUTBACK;
     call_pv("Lucy::Analysis::RegexTokenizer::_compile_token_re", G_SCALAR);
     SPAGAIN;