Switch to side-by-side view

--- a/src/aspell/rclaspell.cpp
+++ b/src/aspell/rclaspell.cpp
@@ -263,14 +263,12 @@
 		LOGDEB2(("Aspell::buildDict: SKIP\n"));
 		continue;
 	    }
-#ifndef RCL_INDEX_STRIPCHARS
 	    if (!o_index_stripchars) {
 		string lower;
 		if (!unacmaybefold(*m_input, lower, "UTF-8", UNACOP_FOLD))
 		    continue;
 		m_input->swap(lower);
 	    }
-#endif
 	    // Got a non-empty sort-of appropriate term, let's send it to
 	    // aspell
 	    LOGDEB2(("Apell::buildDict: SEND\n"));
@@ -382,7 +380,6 @@
     if (iterm.empty())
         return true; //??
 
-#ifndef RCL_INDEX_STRIPCHARS
     if (!o_index_stripchars) {
 	string lower;
 	if (!unacmaybefold(mterm, lower, "UTF-8", UNACOP_FOLD)) {
@@ -391,7 +388,6 @@
 	}
 	mterm.swap(lower);
     }
-#endif
 
     int ret = aapi.aspell_speller_check(m_data->m_speller, 
                                         mterm.c_str(), mterm.length());
@@ -416,7 +412,6 @@
     if (mterm.empty())
         return true; //??
 
-#ifndef RCL_INDEX_STRIPCHARS
     if (!o_index_stripchars) {
 	string lower;
 	if (!unacmaybefold(mterm, lower, "UTF-8", UNACOP_FOLD)) {
@@ -425,7 +420,6 @@
 	}
 	mterm.swap(lower);
     }
-#endif
 
     AspellCanHaveError *ret;