From e505abfe75923d06098f6230e5a7ba39c091d3ce Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 13 Sep 2015 19:46:16 -0400 Subject: Revert "new_workspace null behavior + testmap functions + regex" This reverts commit e1d18e42a8f3a597b9bf5f1bb2ab6c346e4e7983. Fixes #180 cc @taiyu-len --- sway/config.c | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'sway/config.c') diff --git a/sway/config.c b/sway/config.c index da92030e..23d6ac0d 100644 --- a/sway/config.c +++ b/sway/config.c @@ -286,28 +286,3 @@ char *do_var_replacement(char *str) { } return str; } - -struct workspace_output *wsop_find_workspace(const char *name) { - int i, len = config->workspace_outputs->length; - struct workspace_output *wsop; - for (i = 0; i < len; ++i) { - wsop = config->workspace_outputs->items[i]; - if (strcasecmp(wsop->workspace, name) == 0) { - return wsop; - } - } - return NULL; -} - -struct workspace_output *wsop_find_output(const char *name) { - int i, len = config->workspace_outputs->length; - struct workspace_output *wsop; - for (i = 0; i < len; ++i) { - wsop = config->workspace_outputs->items[i]; - if (strcasecmp(wsop->output, name) == 0) { - return wsop; - } - } - return NULL; -} - -- cgit v1.2.3