Repository: lucy
Updated Branches:
  refs/heads/master b2f0e09f3 -> ff623ae6a


Adjust for CLOWNFISH-52 changes


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

Branch: refs/heads/master
Commit: ff623ae6a6be053cebec2f65198e19d7c76d97a0
Parents: b2f0e09
Author: Nick Wellnhofer <wellnho...@aevum.de>
Authored: Fri May 29 15:59:28 2015 +0200
Committer: Nick Wellnhofer <wellnho...@aevum.de>
Committed: Fri May 29 15:59:28 2015 +0200

----------------------------------------------------------------------
 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/ff623ae6/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 889e0d0..ebd4fea 100644
--- a/perl/buildlib/Lucy/Build/Binding/Misc.pm
+++ b/perl/buildlib/Lucy/Build/Binding/Misc.pm
@@ -84,7 +84,7 @@ PPCODE:
         LUCY_OutStream_Close(target);
         serialized_bb
             = LUCY_RAMFile_Get_Contents(LUCY_RAMFH_Get_File(file_handle));
-        retval = XSBind_bb_to_sv(aTHX_ serialized_bb);
+        retval = (SV*)CFISH_BB_To_Host(serialized_bb);
         CFISH_DECREF(file_handle);
         CFISH_DECREF(target);
 

http://git-wip-us.apache.org/repos/asf/lucy/blob/ff623ae6/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 952990a..e29737e 100644
--- a/perl/buildlib/Lucy/Build/Binding/Util.pm
+++ b/perl/buildlib/Lucy/Build/Binding/Util.pm
@@ -154,7 +154,7 @@ latest_snapshot(folder)
 CODE:
 {
     cfish_String *latest = lucy_IxFileNames_latest_snapshot(folder);
-    RETVAL = XSBind_str_to_sv(aTHX_ latest);
+    RETVAL = (SV*)CFISH_Str_To_Host(latest);
     CFISH_DECREF(latest);
 }
 OUTPUT: RETVAL

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

Reply via email to