From 6e447712b5394a78505d83de64afc7c52a065a1b Mon Sep 17 00:00:00 2001 From: jsg Date: Sat, 18 May 2024 08:50:11 +0000 Subject: [PATCH] remove externs with no matching var; ok nicm@ --- usr.bin/tmux/cmd.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/usr.bin/tmux/cmd.c b/usr.bin/tmux/cmd.c index f5c71fbddb5..fbb77b0dced 100644 --- a/usr.bin/tmux/cmd.c +++ b/usr.bin/tmux/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.175 2023/08/17 14:10:28 nicm Exp $ */ +/* $OpenBSD: cmd.c,v 1.176 2024/05/18 08:50:11 jsg Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -48,7 +48,6 @@ extern const struct cmd_entry cmd_display_menu_entry; extern const struct cmd_entry cmd_display_message_entry; extern const struct cmd_entry cmd_display_popup_entry; extern const struct cmd_entry cmd_display_panes_entry; -extern const struct cmd_entry cmd_down_pane_entry; extern const struct cmd_entry cmd_find_window_entry; extern const struct cmd_entry cmd_has_session_entry; extern const struct cmd_entry cmd_if_shell_entry; @@ -118,7 +117,6 @@ extern const struct cmd_entry cmd_swap_window_entry; extern const struct cmd_entry cmd_switch_client_entry; extern const struct cmd_entry cmd_unbind_key_entry; extern const struct cmd_entry cmd_unlink_window_entry; -extern const struct cmd_entry cmd_up_pane_entry; extern const struct cmd_entry cmd_wait_for_entry; const struct cmd_entry *cmd_table[] = { -- 2.20.1