aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/main.c b/main.c
index 18bb5b4..7078f44 100644
--- a/main.c
+++ b/main.c
@@ -104,8 +104,6 @@ typedef struct {
static Key getkey(void);
static void cursor(const Arg *arg);
static void call(const Arg *arg);
-static void find_forward(const Arg *arg);
-static void find_backward(const Arg *arg);
#include "config.h"
@@ -119,14 +117,6 @@ static void call(const Arg *arg) {
arg->f(vis);
}
-static void find_forward(const Arg *arg) {
- vis_search(vis, arg->s, 1);
-}
-
-static void find_backward(const Arg *arg) {
- vis_search(vis, arg->s, -1);
-}
-
typedef struct Screen Screen;
static struct Screen {
int w, h;