X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fmenu_format.3x.html;h=bafbee3dd46a31a403376f4b415c1539d8c48669;hb=b661daf1160a873609d70843999cd46eff25d1f0;hp=44e2125d043eec06447a4e4f10aefaf87866af77;hpb=47d2fb4537d9ad5bb14f4810561a327930ca4280;p=ncurses.git diff --git a/doc/html/man/menu_format.3x.html b/doc/html/man/menu_format.3x.html index 44e2125d..bafbee3d 100644 --- a/doc/html/man/menu_format.3x.html +++ b/doc/html/man/menu_format.3x.html @@ -28,7 +28,7 @@ * sale, use or other dealings in this Software without prior written * * authorization. * **************************************************************************** - * @Id: menu_format.3x,v 1.17 2020/02/02 23:34:34 tom Exp @ + * @Id: menu_format.3x,v 1.18 2020/10/17 23:43:11 tom Exp @ --> @@ -53,16 +53,17 @@

SYNOPSIS

        #include <menu.h>
-       int set_menu_format(MENU *menu, int rows, int cols);
-       void menu_format(const MENU *menu, int *rows, int *cols);
+
+       int set_menu_format(MENU *menu, int rows, int cols);
+       void menu_format(const MENU *menu, int *rows, int *cols);
 
 
 

DESCRIPTION

        The function set_menu_format sets the maximum display size of the given
        menu.  If this size is too small to display all menu  items,  the  menu
-       will be made scrollable.  If this size is larger than the menus subwin-
-       dow and the subwindow is too small to display all menu items, post_menu
-       will fail.
+       will  be  made  scrollable.   If  this  size  is  larger than the menus
+       subwindow and the subwindow is too small to  display  all  menu  items,
+       post_menu will fail.
 
        The  default format is 16 rows, 1 column.  Calling set_menu_format with
        a null menu pointer will change this default.  A  zero  row  or  column
@@ -101,8 +102,8 @@
 
 
 

PORTABILITY

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

AUTHORS