X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_scroll.3x.html;h=cd50d76ea44b69b2c9273c0e7315fa24506d0da6;hp=fb2abac9527c2d3ee599df22dca9934210621df7;hb=refs%2Ftags%2Fv5.3;hpb=c633e5103a29a38532cf1925257b91cea33fd090 diff --git a/doc/html/man/curs_scroll.3x.html b/doc/html/man/curs_scroll.3x.html index fb2abac9..cd50d76e 100644 --- a/doc/html/man/curs_scroll.3x.html +++ b/doc/html/man/curs_scroll.3x.html @@ -1,58 +1,96 @@ + + + +curs_scroll 3x + + + +

curs_scroll 3x

+
 
 
 

NAME

-       scroll, scrl, wscrl - scroll a curses window
+       scroll, scrl, wscrl - scroll a curses window
 
 
 

SYNOPSIS

-       #include <curses.h>
+       #include <curses.h>
 
-       int scroll(WINDOW *win);
-       int scrl(int n);
-       int wscrl(WINDOW *win, int n);
+       int scroll(WINDOW *win);
+       int scrl(int n);
+       int wscrl(WINDOW *win, int n);
 
 
 

DESCRIPTION

-       The  scroll  routine scrolls the window up one line.  This
+       The  scroll  routine scrolls the window up one line.  This
        involves moving the lines in the  window  data  structure.
        As  an optimization, if the scrolling region of the window
        is the entire screen, the physical screen may be  scrolled
        at the same time.
 
-       For  positive  n,  the  scrl and wscrl routines scroll the
-       window up n lines (line i+n becomes i);  otherwise  scroll
-       the  window  down n lines.  This involves moving the lines
+       For  positive  n,  the  scrl and wscrl routines scroll the
+       window up n lines (line i+n becomes i);  otherwise  scroll
+       the  window  down n lines.  This involves moving the lines
        in the window character image structure.  The current cur-
        sor position is not changed.
 
        For these functions to work, scrolling must be enabled via
-       scrollok.
+       scrollok.
 
 
 

RETURN VALUE

-       These routines return ERR upon failure, and OK (SVr4  only
-       specifies "an integer value other than ERR") upon success-
+       These routines return ERR upon failure, and OK (SVr4  only
+       specifies "an integer value other than ERR") upon success-
        ful completion.
 
 
 

NOTES

-       Note that scrl and scroll may be macros.
+       Note that scrl and scroll may be macros.
 
        The SVr4 documentation says that the optimization of phys-
        ically  scrolling  immediately if the scroll region is the
        entire screen "is"  performed,  not  "may  be"  performed.
        This  implementation  deliberately does not guarantee that
-       this will occur, in order to leave open the possibility of
-       smarter  optimization  of  multiple  scroll actions on the
-       next update.
+       this will occur, to leave open the possibility of  smarter
+       optimization  of  multiple  scroll  actions  on  the  next
+       update.
 
        Neither the SVr4 nor the XSI documentation specify whether
        the current attribute or current color-pair of blanks gen-
@@ -68,7 +106,7 @@
 
 

SEE ALSO

-       curses(3x), curs_outopts(3x)
+       curses(3x), curs_outopts(3x)