X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fncurses.3x.html;h=e97c8c8ac3818532cbd1a7d10a8a869ac9c623d4;hp=f473109097d1244c8f32af52544c62b63bbbe03b;hb=74433bcf4f6fe40862a28f3c00edaedcd5054b01;hpb=e6bb3226cdd35f5fd9f45bb1685cc2203c889480 diff --git a/doc/html/man/ncurses.3x.html b/doc/html/man/ncurses.3x.html index f4731090..e97c8c8a 100644 --- a/doc/html/man/ncurses.3x.html +++ b/doc/html/man/ncurses.3x.html @@ -28,7 +28,7 @@ * sale, use or other dealings in this Software without prior written * * authorization. * **************************************************************************** - * @Id: ncurses.3x,v 1.153 2021/08/22 17:17:16 tom Exp @ + * @Id: ncurses.3x,v 1.156 2021/12/25 21:19:26 tom Exp @ --> @@ -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.3 (patch 20211021). + This describes ncurses version 6.3 (patch 20211225). 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 @@ -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
@@ -912,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

@@ -942,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

@@ -1030,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

@@ -1471,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.