X-Git-Url: https://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fform_field_attributes.3x.html;h=0ec75c6c5740093aea3ef3192853a022c59cb773;hb=91d451ffc473b358d8d74506d2da8871e44fbd7b;hp=be28a3a173513ad74ac98f6c627e5852f7d3d3b2;hpb=eccca377f55c70b12e3e92621d94d1e1c1fcfb7d;p=ncurses.git diff --git a/doc/html/man/form_field_attributes.3x.html b/doc/html/man/form_field_attributes.3x.html index be28a3a1..0ec75c6c 100644 --- a/doc/html/man/form_field_attributes.3x.html +++ b/doc/html/man/form_field_attributes.3x.html @@ -1,7 +1,8 @@ - @@ -35,7 +36,7 @@ form_field_attributes 3x - + @@ -52,19 +53,22 @@

SYNOPSIS

        #include <form.h>
-       int set_field_fore(FIELD *field, chtype attr);
-       chtype field_fore(const FIELD *field);
-       int set_field_back(FIELD *field, chtype attr);
-       chtype field_back(const FIELD *field);
-       int set_field_pad(FIELD *field, int pad);
-       int field_pad(const FIELD *field);
+
+       int set_field_fore(FIELD *field, chtype attr);
+       chtype field_fore(const FIELD *field);
+
+       int set_field_back(FIELD *field, chtype attr);
+       chtype field_back(const FIELD *field);
+
+       int set_field_pad(FIELD *field, int pad);
+       int field_pad(const FIELD *field);
 
 
 

DESCRIPTION

        The  function  set_field_fore  sets  the foreground attribute of field.
        This is the highlight used to display the field contents.  The function
-       field_fore  returns  the foreground attribute.  The default is A_STAND-
-       OUT.
+       field_fore   returns   the   foreground   attribute.   The  default  is
+       A_STANDOUT.
 
        The function set_field_back sets the background attribute of form. This
        is  the  highlight  used to display the extent fields in the form.  The
@@ -99,8 +103,8 @@
 
 
 

PORTABILITY

-       These  routines emulate the System V forms library.  They were not sup-
-       ported on Version 7 or BSD versions.
+       These  routines  emulate  the  System  V  forms library.  They were not
+       supported on Version 7 or BSD versions.
 
 
 

AUTHORS