Switch to side-by-side view

--- a/src/rcldb/stemdb.cpp
+++ b/src/rcldb/stemdb.cpp
@@ -291,13 +291,14 @@
 		// Build expansion list from database data No need for
 		// a conftree, but we need to massage the data a
 		// little
-		string::size_type pos = data.find_first_of("=");
-		++pos;
-		string::size_type pos1 = data.find_last_of("\n");
+		string::size_type pos = data.find('=');
+		string::size_type pos1 = data.rfind('\n');
 		if (pos == string::npos || pos1 == string::npos || 
-		    pos1 <= pos) {
-		    // ??
+		    pos1 <= pos+1) {
+		    LOGERR(("stemExpand: bad data in db: [%s]\n", 
+			    data.c_str()));
 		} else {
+		    ++pos;
 		    stringToStrings(data.substr(pos, pos1-pos), result);
 		}
 	    }