X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fmenu_pattern.3x.html;h=0345c56797d0d6d70d7a38a02a8ff379a4424260;hp=ea3a8cce9a5764ed9251dbb3891089841e39c682;hb=ca276baf720e3a44721b9e18955d3f546955c6c8;hpb=46722468f47c2b77b3987729b4bcf2321cccfd01;ds=sidebyside diff --git a/doc/html/man/menu_pattern.3x.html b/doc/html/man/menu_pattern.3x.html index ea3a8cce..0345c567 100644 --- a/doc/html/man/menu_pattern.3x.html +++ b/doc/html/man/menu_pattern.3x.html @@ -1,7 +1,7 @@ @@ -40,6 +40,10 @@
 
+menu_pattern(3x)                                       menu_pattern(3x)
+
+
+
 
 

NAME

@@ -56,9 +60,9 @@
 

DESCRIPTION

        Every  menu  has  an  associated pattern match buffer.  As
-       input events that are printable ASCII characters come  in,
-       they  are  appended  to this match buffer and tested for a
-       match, as described in menu_driver(3x).
+       input events that are printable characters come  in,  they
+       are  appended to this match buffer and tested for a match,
+       as described in menu_driver(3x).
 
        The function set_menu_pattern sets the pattern buffer  for
        the  given menu and tries to find the first matching item.
@@ -71,22 +75,33 @@
 
 

RETURN VALUE

-       The function menu_pattern  returns  NULL  on  error.   The
-       function  set_menu_pattern  may return the following error
-       codes:
+       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
+       does not set errno.
 
-       E_OK The routine succeeded.
+       The  function  set_menu_pattern  may  return the following
+       error codes:
 
-       E_SYSTEM_ERROR
-            System error occurred (see errno).
+       E_OK The routine succeeded.
 
        E_BAD_ARGUMENT
             Routine detected an incorrect or  out-of-range  argu-
             ment.
 
+       E_BAD_STATE
+            Routine was called from an initialization or termina-
+            tion function.
+
+       E_NOT_CONNECTED
+            No items are connected to menu.
+
        E_NO_MATCH
             Character failed to match.
 
+       E_SYSTEM_ERROR
+            System error occurred (see errno).
+
 
 

SEE ALSO

@@ -101,15 +116,18 @@
 
 

PORTABILITY

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

AUTHORS

-       Juergen  Pfeifer.   Manual  pages  and  adaptation for new
+       Juergen Pfeifer.  Manual  pages  and  adaptation  for  new
        curses by Eric S. Raymond.
 
+
+
+                                                       menu_pattern(3x)