X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fmenu_driver.3x.html;h=f7000ae9fddee4c5acf30f92f2b403f6fd8d0c33;hp=3f24f7f9b447bd1863643082cf6f4349e4e380ca;hb=81304798ee736c467839c779c9ca5dca48db7bea;hpb=06078d3fa68db669ed37178c01873546b4b28745 diff --git a/doc/html/man/menu_driver.3x.html b/doc/html/man/menu_driver.3x.html index 3f24f7f9..f7000ae9 100644 --- a/doc/html/man/menu_driver.3x.html +++ b/doc/html/man/menu_driver.3x.html @@ -1,6 +1,7 @@ - - + menu_driver 3x - + @@ -51,7 +52,8 @@

SYNOPSIS

        #include <menu.h>
-       int menu_driver(MENU *menu, int c);
+
+       int menu_driver(MENU *menu, int c);
 
 
 

DESCRIPTION

@@ -63,8 +65,8 @@
            and character codes returned by wgetch(3x).
 
        o   The input is a printable character.   Printable  characters  (which
-           must  be positive, less than 256) are checked according to the pro-
-           gram's locale settings.
+           must  be  positive,  less  than  256)  are checked according to the
+           program's locale settings.
 
        o   The input is the KEY_MOUSE special key  associated  with  an  mouse
            event.
@@ -172,10 +174,10 @@
 
 

APPLICATION-DEFINED COMMANDS

        If the second argument is neither printable nor one of the  above  pre-
-       defined menu requests or KEY_MOUSE, the drive assumes it is an applica-
-       tion-specific  command  and  returns  E_UNKNOWN_COMMAND.   Application-
-       defined commands should be defined relative to MAX_COMMAND, the maximum
-       value of these pre-defined requests.
+       defined  menu  requests  or  KEY_MOUSE,  the  drive  assumes  it  is an
+       application-specific    command    and    returns    E_UNKNOWN_COMMAND.
+       Application-defined commands should be defined relative to MAX_COMMAND,
+       the maximum value of these pre-defined requests.
 
 
 

RETURN VALUE

@@ -184,7 +186,7 @@
        E_OK The routine succeeded.
 
        E_SYSTEM_ERROR
-            System error occurred (see errno).
+            System error occurred (see errno(3)).
 
        E_BAD_ARGUMENT
             Routine detected an incorrect or out-of-range argument.
@@ -206,7 +208,7 @@
 
 
 

SEE ALSO

-       curses(3x), menu(3x), getch(3x).
+       curses(3x), getch(3x), menu(3x).
 
 
 

NOTES

@@ -215,9 +217,9 @@
 
 
 

PORTABILITY

-       These  routines  emulate the System V menu library.  They were not sup-
-       ported on Version 7 or BSD versions. The support for  mouse  events  is
-       ncurses specific.
+       These  routines  emulate  the  System  V  menu  library.  They were not
+       supported on Version 7 or BSD versions.  The support for  mouse  events
+       is ncurses specific.
 
 
 

AUTHORS