rows              297 src/simh/linehistory.c   int      cols, rows;
rows              329 src/simh/linehistory.c   if (sscanf(buf + 2, "%d;%d", &rows, &cols) != 2)
rows              763 src/simh/linehistory.c   int rows = ( plen + l->len + l->cols - 1 )
rows              773 src/simh/linehistory.c   if (rows > (int)l->maxrows)
rows              775 src/simh/linehistory.c     l->maxrows = rows;
rows              835 src/simh/linehistory.c     rows++;
rows              836 src/simh/linehistory.c     if (rows > (int)l->maxrows)
rows              838 src/simh/linehistory.c       l->maxrows = rows;
rows              846 src/simh/linehistory.c   if (rows - rpos2 > 0)
rows              848 src/simh/linehistory.c     snprintf(seq, sizeof ( seq ), "\x1b[%dA", rows - rpos2);