diff options
author | okan | 2013-04-17 13:30:38 +0000 |
---|---|---|
committer | okan | 2013-04-17 13:30:38 +0000 |
commit | 579afe49d863e8a91655b6ab8a2c42a380c7129e (patch) | |
tree | fb1767b36282112932e3abc5a86d285f2b1fd45b /group.c | |
parent | 75a771a90565abdcd59899872c239ad6c81ba800 (diff) | |
download | cwm-579afe49d863e8a91655b6ab8a2c42a380c7129e.tar.gz |
add conf_ignore and move group_make_autogroup to conf_autogroup to match.
Diffstat (limited to '')
-rw-r--r-- | group.c | 23 |
1 files changed, 1 insertions, 22 deletions
@@ -16,7 +16,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: group.c,v 1.73 2013/04/08 13:05:27 okan Exp $ + * $OpenBSD: group.c,v 1.74 2013/04/17 13:30:38 okan Exp $ */ #include <sys/param.h> @@ -163,27 +163,6 @@ group_init(struct screen_ctx *sc) group_setactive(sc, 1); } -void -group_make_autogroup(struct conf *conf, char *val, int no) -{ - struct autogroupwin *aw; - char *p; - - aw = xcalloc(1, sizeof(*aw)); - - if ((p = strchr(val, ',')) == NULL) { - aw->name = NULL; - aw->class = xstrdup(val); - } else { - *(p++) = '\0'; - aw->name = xstrdup(val); - aw->class = xstrdup(p); - } - aw->num = no; - - TAILQ_INSERT_TAIL(&conf->autogroupq, aw, entry); -} - static void group_setactive(struct screen_ctx *sc, long idx) { |