Procházet zdrojové kódy

Fix lint error

master
Arun Prakash Jana před 5 roky
rodič
revize
52b413adae
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: A75979F35C080412
1 změnil soubory, kde provedl 2 přidání a 3 odebrání
  1. +2
    -3
      src/nnn.c

+ 2
- 3
src/nnn.c Zobrazit soubor

@@ -3202,9 +3202,8 @@ static void move_cursor(int target, int ignore_scrolloff)
* screen by allowing it to move inward and disallowing it to move
* outward (deeper into the scrolloff margin area).
*/
if (cur < curscroll + scrolloff && delta < 0)
curscroll += delta;
else if (cur > curscroll + onscreen - scrolloff - 1 && delta > 0)
if (((cur < (curscroll + scrolloff)) && delta < 0)
|| ((cur > (curscroll + onscreen - scrolloff - 1)) && delta > 0))
curscroll += delta;
}
curscroll = MIN(curscroll, MIN(cur, ndents - onscreen));


Načítá se…
Zrušit
Uložit