X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fncurses.3x.html;h=1fdc512afef1afdbcd0a0a4ed1b98aa498cce215;hp=dff3d2f4a2c084963dbb4f370ec154edaf689598;hb=1c305869cc1b9454efa9325fb5a44b18c79ce91b;hpb=61790aa3ac9e0dff2b443ac567b174fc4d235b86 diff --git a/doc/html/man/ncurses.3x.html b/doc/html/man/ncurses.3x.html index dff3d2f4..1fdc512a 100644 --- a/doc/html/man/ncurses.3x.html +++ b/doc/html/man/ncurses.3x.html @@ -1,7 +1,7 @@ - @@ -37,7 +37,7 @@ ncurses 3x - +

ncurses 3x

@@ -60,15 +60,15 @@ method of updating character screens with reasonable optimization. This implementation is "new curses" (ncurses) and is the approved replacement for 4.4BSD classic curses, which has been discontinued. - This describes ncurses version 6.2 (patch 20210102). + This describes ncurses version 6.3 (patch 20220813). The ncurses library emulates the curses library of System V Release 4 UNIX, and XPG4 (X/Open Portability Guide) curses (also known as XSI curses). XSI stands for X/Open System Interfaces Extension. The ncurses library is freely redistributable in source form. Differences - from the SVr4 curses are summarized under the EXTENSIONS and - PORTABILITY sections below and described in detail in the respective - EXTENSIONS, PORTABILITY and BUGS sections of individual man pages. + from the SVr4 curses are summarized under the EXTENSIONS and + PORTABILITY sections below and described in detail in the respective + EXTENSIONS, PORTABILITY and BUGS sections of individual man pages. The ncurses library also provides many useful extensions, i.e., features which cannot be implemented by a simple add-on library but @@ -78,7 +78,7 @@ option, or (if it has been generated) with the debugging library -lncurses_g. (Your system integrator may also have installed these libraries under the names -lcurses and -lcurses_g.) The ncurses_g - library generates trace logs (in a file called 'trace' in the current + library generates trace logs (in a file called "trace" in the current directory) that describe curses actions. See also the section on ALTERNATE CONFIGURATIONS. @@ -91,7 +91,7 @@

Initialization

        The  library uses the locale which the calling program has initialized.
-       That is normally done with setlocale:
+       That is normally done with setlocale(3):
 
            setlocale(LC_ALL, "");
 
@@ -204,7 +204,7 @@
 
 

Routine and Argument Names

        Many  curses routines have two or more versions.  The routines prefixed
-       with w require a window argument.  The routines prefixed with p require
+       with w require a window argument.  The routines prefixed with p require
        a pad argument.  Those without a prefix generally use stdscr.
 
        The  routines  prefixed with mv require a y and x coordinate to move to
@@ -541,7 +541,7 @@
                     newpad                   curs_pad(3x)
                     newterm                  curs_initscr(3x)
                     newwin                   curs_window(3x)
-                    nl                       curs_outopts(3x)
+                    nl                       curs_inopts(3x)
                     nocbreak                 curs_inopts(3x)
                     nodelay                  curs_inopts(3x)
                     noecho                   curs_inopts(3x)
@@ -587,7 +587,6 @@
                     setcchar                 curs_getcchar(3x)
                     setscrreg                curs_outopts(3x)
                     setsyx                   curs_kernel(3x)
-                    setterm                  curs_terminfo(3x)
                     setupterm                curs_terminfo(3x)
                     slk_attr                 curs_slk(3x)*
                     slk_attr_off             curs_slk(3x)
@@ -643,8 +642,8 @@
                     use_legacy_coding        legacy_coding(3x)*
                     use_tioctl               curs_util(3x)*
                     vid_attr                 curs_terminfo(3x)
-
                     vid_puts                 curs_terminfo(3x)
+
                     vidattr                  curs_terminfo(3x)
                     vidputs                  curs_terminfo(3x)
                     vline                    curs_border(3x)
@@ -709,8 +708,8 @@
                     winnstr                  curs_instr(3x)
                     winnwstr                 curs_inwstr(3x)
                     wins_nwstr               curs_ins_wstr(3x)
-
                     wins_wch                 curs_ins_wch(3x)
+
                     wins_wstr                curs_ins_wstr(3x)
                     winsch                   curs_insch(3x)
                     winsdelln                curs_deleteln(3x)
@@ -913,7 +912,7 @@
        Ncurses may use tabs as part of the cursor movement  optimization.   In
        some  cases,  your  terminal driver may not handle these properly.  Set
        this environment variable to disable the feature.  You can also  adjust
-       your stty settings to avoid the problem.
+       your stty(1) settings to avoid the problem.
 
 
 

NCURSES_NO_MAGIC_COOKIE

@@ -943,7 +942,7 @@
 
        Set  the  NCURSES_NO_PADDING  environment  variable  to disable all but
        mandatory padding.  Mandatory padding is used  as  a  part  of  special
-       control sequences such as flash.
+       control sequences such as flash.
 
 
 

NCURSES_NO_SETBUF

@@ -1031,10 +1030,10 @@
 
        If you set TERM in your environment, it has no effect on the  operation
        of  the  terminal  emulator.  It only affects the way applications work
-       within the terminal.  Likewise, as a general rule (xterm being  a  rare
-       exception),  terminal  emulators  which  allow you to specify TERM as a
-       parameter or configuration value do not change their behavior to  match
-       that setting.
+       within the terminal.  Likewise, as a general  rule  (xterm(1)  being  a
+       rare  exception), terminal emulators which allow you to specify TERM as
+       a parameter or configuration value do  not  change  their  behavior  to
+       match that setting.
 
 
 

TERMCAP

@@ -1472,7 +1471,7 @@
 
 
 

AUTHORS

-       Zeyd M. Ben-Halim, Eric S. Raymond, Thomas E. Dickey.  Based on pcurses
+       Zeyd M. Ben-Halim, Eric S. Raymond, Thomas E. Dickey.  Based on pcurses
        by Pavel Curtis.