bug-ncurses
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

New dev


From: Damien Ruscoe
Subject: New dev
Date: Thu, 29 Dec 2016 00:25:04 +0000

Hi guys,

I am a little unsure of how to submit any changes, judging by previous
posts to this mailing lists we simply post diffs here?
If I am mistaken, then apologies but you only learn from your mistakes.

Is there a git repo in which this project is kept? I am not too
familiar with linux dev processes yet but zip files \ mailing lists
etc seems a little antiquated  compared to git.

I will start simple with a bug in the docs that tripped me up a little.

Thanks
Damien



diff --git a/ncurses-6.0.original/doc/html/NCURSES-Programming-HOWTO.html
b/ncurses-6.0/doc/html/NCURSES-Programming-HOWTO.html
index b1e40a2..3c1f816 100644
--- a/ncurses-6.0.original/doc/html/NCURSES-Programming-HOWTO.html
+++ b/ncurses-6.0/doc/html/NCURSES-Programming-HOWTO.html
@@ -7300,7 +7300,7 @@ characters (this is checked at character-entry
time).  It is set up with: </P
 CLASS="PROGRAMLISTING"
 >int set_field_type(FIELD *field,          /* field to alter */
                    TYPE_ALPHA,            /* type to associate */
-                   int width);            /* maximum width of field */</PRE
+                   int width);            /* minimum width of field */</PRE
 ><P
 >The width argument sets a minimum width of data. The user has to
enter at-least
 width number of characters before he can leave the field. Typically
@@ -7320,7 +7320,7 @@ characters (this is checked at character-entry
time).  It is set up with: </P
 CLASS="PROGRAMLISTING"
 >int set_field_type(FIELD *field,          /* field to alter */
                    TYPE_ALNUM,            /* type to associate */
-                   int width);            /* maximum width of field */</PRE
+                   int width);            /* minimum width of field */</PRE
 ><P
 >The width argument sets a minimum width of data.  As with
 TYPE_ALPHA, typically you'll want to set this to the field width; if it's
@@ -8710,4 +8710,4 @@ follows from the original document</P
 ></DIV
 ></BODY
 ></HTML
->
\ No newline at end of file
+>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]