1
1

pasting: restore the cap on the number of chunks to move backward

This fixes https://savannah.gnu.org/bugs/?51514.
Этот коммит содержится в:
Benno Schulenberg 2017-07-20 09:41:27 +02:00
родитель 0e4cbd4bfd
Коммит a1fba43452

Просмотреть файл

@ -2803,6 +2803,10 @@ int go_back_chunks(int nrows, filestruct **line, size_t *leftedge)
{
int i;
/* Don't move more chunks than the window can hold. */
if (nrows > editwinrows - 1)
nrows = (editwinrows < 2) ? 1 : editwinrows - 1;
#ifndef NANO_TINY
if (ISSET(SOFTWRAP)) {
/* Recede through the requested number of chunks. */