From 5ac6f2f4290e609897faa322997fc7516e7dfb63 Mon Sep 17 00:00:00 2001
From: Ryan Dwyer <ryandwyer1@gmail.com>
Date: Tue, 7 Aug 2018 23:04:21 +1000
Subject: [PATCH] Fix crash when running `move container to workspace
 back_and_forth`

The back_and_forth condition is intended to be handled in the else-if
block, but this was never reached because it remained in the first
block's conditions.
---
 sway/commands/move.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sway/commands/move.c b/sway/commands/move.c
index bb4a7124..95dcb088 100644
--- a/sway/commands/move.c
+++ b/sway/commands/move.c
@@ -105,7 +105,6 @@ static struct cmd_results *cmd_move_container(struct sway_container *current,
 				strcasecmp(argv[2], "prev") == 0 ||
 				strcasecmp(argv[2], "next_on_output") == 0 ||
 				strcasecmp(argv[2], "prev_on_output") == 0 ||
-				strcasecmp(argv[2], "back_and_forth") == 0 ||
 				strcasecmp(argv[2], "current") == 0) {
 			ws = workspace_by_name(argv[2]);
 		} else if (strcasecmp(argv[2], "back_and_forth") == 0) {