← Back to team overview

zorba-coders team mailing list archive

[Merge] lp:~zorba-coders/zorba/bug1017924 into lp:zorba

 

Juan Zacarias has proposed merging lp:~zorba-coders/zorba/bug1017924 into lp:zorba.

Commit message:
Fix for bug 1017924 tokenize-node does not consider the language passed as a parameter.

Requested reviews:
  Paul J. Lucas (paul-lucas)
  Chris Hillery (ceejatec)
Related bugs:
  Bug #1017924 in Zorba: "tokenize-node does not consider the language passed as a parameter"
  https://bugs.launchpad.net/zorba/+bug/1017924

For more details, see:
https://code.launchpad.net/~zorba-coders/zorba/bug1017924/+merge/150430

Fix for bug 1017924 tokenize-node does not consider the language passed as a parameter.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug1017924/+merge/150430
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/runtime/full_text/ft_module_impl.cpp'
--- src/runtime/full_text/ft_module_impl.cpp	2013-01-04 16:08:03 +0000
+++ src/runtime/full_text/ft_module_impl.cpp	2013-02-25 20:39:24 +0000
@@ -630,7 +630,7 @@
     if ( theChildren.size() > 1 ) {
       consumeNext( item, theChildren[1], plan_state );
       lang = get_lang_from( item, loc );
-    } {
+    } else {
       static_context const *const sctx = getStaticContext();
       ZORBA_ASSERT( sctx );
       lang = get_lang_from( sctx );


Follow ups