aboutsummaryrefslogtreecommitdiffstats
path: root/search.c
diff options
context:
space:
mode:
authoroga2008-03-22 14:09:02 +0000
committeroga2008-03-22 14:09:02 +0000
commit200c48963c22fe4070b8fcf11f2c32f0b6d97a62 (patch)
tree1e29a4b488f0e6babaf1a5ac1ef3b6337d0e965b /search.c
parent7644f9dcec63b407725bbc5ab484870e1b8da794 (diff)
downloadcwm-200c48963c22fe4070b8fcf11f2c32f0b6d97a62.tar.gz
Remove a bunch of unused variables and incorrect comments.
"ok with me" okan@.
Diffstat (limited to 'search.c')
-rw-r--r--search.c18
1 files changed, 2 insertions, 16 deletions
diff --git a/search.c b/search.c
index cc091dd..3e1be16 100644
--- a/search.c
+++ b/search.c
@@ -14,7 +14,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: search.c,v 1.6 2008/01/16 11:39:20 oga Exp $
+ * $Id: search.c,v 1.7 2008/03/22 14:09:02 oga Exp $
*/
#include "headers.h"
@@ -32,11 +32,6 @@ search_init(struct screen_ctx *sc)
}
/*
- * ranking. each rank type is assigned a weight. multiply this by
- * the rank given. add them up. simple linear combination.
- */
-
-/*
* Input: list of items,
* Output: choose one
* so, exactly like menus
@@ -45,7 +40,6 @@ search_init(struct screen_ctx *sc)
struct menu *
search_start(struct menu_q *menuq,
void (*match)(struct menu_q *, struct menu_q *, char *),
- void (*rank)(struct menu_q *resultq, char *search),
void (*print)(struct menu *mi, int print),
char *prompt, int dummy)
{
@@ -109,10 +103,6 @@ search_start(struct menu_q *menuq,
switch (e.type) {
case KeyPress:
- /*
- * XXX - C-s & C-r for next and prev.
- */
-
if (input_keycodetrans(e.xkey.keycode, e.xkey.state,
&ctl, &chr, 1) < 0)
continue;
@@ -180,8 +170,6 @@ search_start(struct menu_q *menuq,
if (mutated && strlen(searchstr) > 0) {
(*match)(menuq, &resultq, searchstr);
beobnoxious = TAILQ_EMPTY(&resultq);
- if (!beobnoxious && rank != NULL)
- (*rank)(&resultq, searchstr);
} else if (mutated)
TAILQ_INIT(&resultq);
@@ -194,12 +182,10 @@ search_start(struct menu_q *menuq,
case Expose:
if (list) {
if (TAILQ_EMPTY(&resultq) && list) {
- /* Copy them over and rank them. */
+ /* Copy them all over. */
TAILQ_FOREACH(mi, menuq, entry)
TAILQ_INSERT_TAIL(&resultq, mi,
resultentry);
- if (rank != NULL)
- (*rank)(&resultq, searchstr);
listing = 1;
} else if (mutated)