X-Git-Url: https://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fmenu_pattern.3x.html;h=bf7bf8f2af0285f81a6e8cb85fd36cb77d3a8f45;hb=302a066a01e4de40f08b397e87ca0e97f20870a7;hp=4f251da34d79259ea3380dd86277f821467c0b24;hpb=b11cef1e315b58820ea0cde239ebf2f741ef8948;p=ncurses.git diff --git a/doc/html/man/menu_pattern.3x.html b/doc/html/man/menu_pattern.3x.html index 4f251da3..bf7bf8f2 100644 --- a/doc/html/man/menu_pattern.3x.html +++ b/doc/html/man/menu_pattern.3x.html @@ -45,21 +45,18 @@ - -

NAME

+

NAME

        set_menu_pattern, menu_pattern - set and get a menu's pat-
        tern buffer
 
 
-
-

SYNOPSIS

+

SYNOPSIS

        #include <menu.h>
        int set_menu_pattern(MENU *menu, const char *pattern);
        char *menu_pattern(const MENU *menu);
 
 
-
-

DESCRIPTION

+

DESCRIPTION

        Every menu has an associated  pattern  match  buffer.   As
        input  events  that are printable characters come in, they
        are appended to this match buffer and tested for a  match,
@@ -74,8 +71,7 @@
        the given menu.
 
 
-
-

RETURN VALUE

+

RETURN VALUE

        The function menu_pattern returns a pointer, which is NULL
        if the menu parameter is NULL.  Otherwise, it is a pointer
        to a string which is empty if no pattern has been set.  It
@@ -104,25 +100,21 @@
             System error occurred (see errno).
 
 
-
-

SEE ALSO

+

SEE ALSO

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

NOTES

+

NOTES

        The header file <menu.h> automatically includes the header
        file <curses.h>.
 
 
-
-

PORTABILITY

+

PORTABILITY

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

AUTHORS

+

AUTHORS

        Juergen  Pfeifer.   Manual  pages  and  adaptation for new
        curses by Eric S. Raymond.