X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fform_field_attributes.3x.html;h=0ec75c6c5740093aea3ef3192853a022c59cb773;hp=86aaee9a5ddfaef45df7144607a1ec5b83107e6c;hb=81304798ee736c467839c779c9ca5dca48db7bea;hpb=17c5992a16be94247b83f2bbb9accdd9b7e7bb72;ds=sidebyside diff --git a/doc/html/man/form_field_attributes.3x.html b/doc/html/man/form_field_attributes.3x.html index 86aaee9a..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
@@ -85,7 +89,7 @@
             Routine detected an incorrect or out-of-range argument.
 
        E_SYSTEM_ERROR
-            System error occurred (see errno).
+            System error occurred (see errno(3)).
 
 
 

SEE ALSO

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