rows              304 src/simh/linehistory.c   int      cols, rows;
rows              336 src/simh/linehistory.c   if (sscanf(buf + 2, "%d;%d", &rows, &cols) != 2)
rows              769 src/simh/linehistory.c   int rows = ( plen + l->len + l->cols - 1 )
rows              779 src/simh/linehistory.c   if (rows > (int)l->maxrows)
rows              781 src/simh/linehistory.c     l->maxrows = rows;
rows              841 src/simh/linehistory.c     rows++;
rows              842 src/simh/linehistory.c     if (rows > (int)l->maxrows)
rows              844 src/simh/linehistory.c       l->maxrows = rows;
rows              852 src/simh/linehistory.c   if (rows - rpos2 > 0)
rows              854 src/simh/linehistory.c     (void)snprintf(seq, sizeof ( seq ), "\x1b[%dA", rows - rpos2);