dmenu

my fork of dmenu
Index Commits Files Refs README LICENSE
commit d32fd15ea47bab2bb9cc2674b75c3cc008ef04aa
parent bb393554fda90ce4016ab7236a9a47428bac45a9
Author: arg@10ksloc.org <unknown>
Date:   Mon,  7 Aug 2006 07:39:31 +0200

renamed some functions to make it more readable

Diffstat:
Mmain.c | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/main.c b/main.c
@@ -109,7 +109,7 @@ drawmenu()
 }
 
 static void
-input(char *pattern)
+match(char *pattern)
 {
     unsigned int plen;
     Item *i, *j;
@@ -178,7 +178,7 @@ kpress(XKeyEvent * e)
         case XK_U:
         case XK_u:
             text[0] = 0;
-            input(text);
+            match(text);
             drawmenu();
             return;
             break;
@@ -201,7 +201,7 @@ kpress(XKeyEvent * e)
         if(!sel)
             return;
         strncpy(text, sel->text, sizeof(text));
-        input(text);
+        match(text);
         break;
     case XK_Right:
         if(!(sel && sel->right))
@@ -233,9 +233,9 @@ kpress(XKeyEvent * e)
             prev_nitem = nitem;
             do {
                 text[--i] = 0;
-                input(text);
+                match(text);
             } while(i && nitem && prev_nitem == nitem);
-            input(text);
+            match(text);
         }
         break;
     default:
@@ -245,14 +245,14 @@ kpress(XKeyEvent * e)
                 strncat(text, buf, sizeof(text));
             else
                 strncpy(text, buf, sizeof(text));
-            input(text);
+            match(text);
         }
     }
     drawmenu();
 }
 
 static char *
-readinput()
+readstdin()
 {
     static char *maxname = NULL;
     char *p, buf[1024];
@@ -309,7 +309,7 @@ main(int argc, char *argv[])
     screen = DefaultScreen(dpy);
     root = RootWindow(dpy, screen);
 
-    maxname = readinput();
+    maxname = readstdin();
 
     /* grab as early as possible, but after reading all items!!! */
     while(XGrabKeyboard(dpy, root, True, GrabModeAsync,
@@ -346,7 +346,7 @@ main(int argc, char *argv[])
         cmdw = mw / 3;
 
     text[0] = 0;
-    input(text);
+    match(text);
     XMapRaised(dpy, win);
     drawmenu();
     XSync(dpy, False);