]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 24 Jul 2005 17:06:56 +0000 (17:06 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 24 Jul 2005 17:06:56 +0000 (17:06 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2918 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/winio.c

index a0d8318a518e8e51727241518f85ca1985597ae8..fe690a89e7f8d58bd0522184c68d7e5002765fee 100644 (file)
@@ -3546,10 +3546,7 @@ void edit_scroll(updown direction, int nlines)
      * If the scrolled region contains more than one line, and the lines
      * before and after the scrolled region are visible in the edit
      * window, we need to draw them too. */
-    if (nlines == 1)
-       nlines++;
-    else
-       nlines += 2;
+    nlines += (nlines == 1) ? 1 : 2;
     if (nlines > editwinrows)
        nlines = editwinrows;