X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fcombine.c;h=d9a8063b4b46cea96a465788b5b08dc491b05904;hb=9a0b29ec1f8a844e2ad24f6d4383de0f0792f31b;hp=18b2bc480cc46ca0cefa799d69a6b5839501fb9b;hpb=7a8c1e45c8d53a3b84a712c09c1fbdf9eaaa3e5a;p=monky diff --git a/src/combine.c b/src/combine.c index 18b2bc4..d9a8063 100644 --- a/src/combine.c +++ b/src/combine.c @@ -118,7 +118,8 @@ void print_combine(struct text_object *obj, char *p, struct information *cur) generate_text_internal(buf[i], max_user_text, *objsub, cur); for(j=0; buf[i][j] != 0; j++) { if(buf[i][j] == '\t') buf[i][j] = ' '; - if(buf[i][j] == '\n' || buf[i][j] == 2) { //Some vars like $head use \002 instead of \n to separate lines + if(buf[i][j] == '\n') buf[i][j] = 0; //the vars inside combine may not have a \n at the end + if(buf[i][j] == 2) { // \002 is used instead of \n to separate lines inside a var buf[i][j] = 0; current[i]->row = strdup(buf[i]+nextstart); if(i==0 && (long)strlen(current[i]->row) > longest) longest = (long)strlen(current[i]->row);