davidgiven / cpmish

An open source sort-of CP/M 2.2 distribution.
http://cowlark.com/cpmish
Other
347 stars 37 forks source link

qe.c: open_below() should call open_above() with count #7

Closed cziesler closed 5 years ago

cziesler commented 5 years ago

In open_below(), the call to open_above() should pass in the count variable instead of 1.

void open_below(uint16_t count)
{
    cursor_down(1);
//  open_above(1);
    open_above(count);
}
davidgiven commented 5 years ago

Yup, fixed --- thanks!

Of course, as text_insert() currently ignores the count this is strictly academic, but that's not the point...