X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_deleteln.3x.html;h=e2cdde039341c742e7974f0fbb763c1fb335c6cf;hp=3d533635bc3315ea59738464648a8f48efe33587;hb=81304798ee736c467839c779c9ca5dca48db7bea;hpb=ed646e3f683083e787c6ba773364401dc9fa9d40;ds=sidebyside diff --git a/doc/html/man/curs_deleteln.3x.html b/doc/html/man/curs_deleteln.3x.html index 3d533635..e2cdde03 100644 --- a/doc/html/man/curs_deleteln.3x.html +++ b/doc/html/man/curs_deleteln.3x.html @@ -1,6 +1,7 @@ - - + curs_deleteln 3x - + @@ -54,11 +55,13 @@ #include <curses.h> int deleteln(void); - int wdeleteln(WINDOW *win); - int insdelln(int n); - int winsdelln(WINDOW *win, int n); + int wdeleteln(WINDOW *win); + + int insdelln(int n); + int winsdelln(WINDOW *win, int n); + int insertln(void); - int winsertln(WINDOW *win); + int winsertln(WINDOW *win);

DESCRIPTION

@@ -73,14 +76,14 @@
        the cursor), and move the remaining lines up.  The bottom n  lines  are
        cleared.  The current cursor position remains the same.
 
-       The  insertln and winsertln routines insert a blank line above the cur-
-       rent line and the bottom line is lost.
+       The  insertln  and  winsertln  routines  insert  a blank line above the
+       current line and the bottom line is lost.
 
 
 

RETURN VALUE

-       All routines return the integer ERR upon failure and an OK (SVr4 speci-
-       fies  only  "an  integer value other than ERR") upon successful comple-
-       tion.
+       All routines return the integer  ERR  upon  failure  and  an  OK  (SVr4
+       specifies  only  "an  integer  value  other  than ERR") upon successful
+       completion.
 
        X/Open defines no error conditions.  In  this  implementation,  if  the
        window parameter is null, an error is returned.
@@ -97,8 +100,8 @@
 
        These  routines do not require a hardware line delete or insert feature
        in  the  terminal.   In  fact,  they  will  not   use   hardware   line
-       delete/insert  unless idlok(..., TRUE) has been set on the current win-
-       dow.
+       delete/insert  unless  idlok(...,  TRUE)  has  been  set on the current
+       window.
 
 
 

SEE ALSO