rows              302 src/simh/linehistory.c   int      cols, rows;
rows              334 src/simh/linehistory.c   if (sscanf(buf + 2, "%d;%d", &rows, &cols) != 2)
rows              768 src/simh/linehistory.c   int rows = ( plen + l->len + l->cols - 1 )
rows              778 src/simh/linehistory.c   if (rows > (int)l->maxrows)
rows              780 src/simh/linehistory.c     l->maxrows = rows;
rows              840 src/simh/linehistory.c     rows++;
rows              841 src/simh/linehistory.c     if (rows > (int)l->maxrows)
rows              843 src/simh/linehistory.c       l->maxrows = rows;
rows              851 src/simh/linehistory.c   if (rows - rpos2 > 0)
rows              853 src/simh/linehistory.c     snprintf(seq, sizeof ( seq ), "\x1b[%dA", rows - rpos2);