From ea0386af938b356f999b7db79c7172ac229f0d4e Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 6 Jul 2022 08:32:28 +0000 Subject: [PATCH] Remove debugging code. --- usr.bin/tmux/cmd-find.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/tmux/cmd-find.c b/usr.bin/tmux/cmd-find.c index 25c430e116b..1e5a26a4b3f 100644 --- a/usr.bin/tmux/cmd-find.c +++ b/usr.bin/tmux/cmd-find.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-find.c,v 1.80 2022/07/06 08:31:59 nicm Exp $ */ +/* $OpenBSD: cmd-find.c,v 1.81 2022/07/06 08:32:28 nicm Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott @@ -1265,7 +1265,7 @@ cmd_find_current_client(struct cmdq_item *item, int quiet) found = cmd_find_best_client(s); } if (found == NULL && item != NULL && !quiet) - abort();//cmdq_error(item, "no current client"); + cmdq_error(item, "no current client"); log_debug("%s: no target, return %p", __func__, found); return (found); } -- 2.20.1