Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 May 2020 08:23:48 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r533903 - in head/sysutils/tmux: . files
Message-ID:  <202005040823.0448NmpL003219@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Mon May  4 08:23:47 2020
New Revision: 533903
URL: https://svnweb.freebsd.org/changeset/ports/533903

Log:
  Add a small patch that would be part of 3.1b if it gets released.

Added:
  head/sysutils/tmux/files/patch-6a33a12798b2afeee6fb7bba74d86d628137921e   (contents, props changed)
Modified:
  head/sysutils/tmux/Makefile   (contents, props changed)

Modified: head/sysutils/tmux/Makefile
==============================================================================
--- head/sysutils/tmux/Makefile	Mon May  4 08:23:43 2020	(r533902)
+++ head/sysutils/tmux/Makefile	Mon May  4 08:23:47 2020	(r533903)
@@ -3,6 +3,7 @@
 
 PORTNAME=	tmux
 PORTVERSION=	3.1a
+PORTREVISION=	1
 CATEGORIES=	sysutils
 MASTER_SITES=	https://github.com/tmux/tmux/releases/download/${PORTVERSION}/
 DISTFILES=	${DISTNAME}${EXTRACT_SUFX}

Added: head/sysutils/tmux/files/patch-6a33a12798b2afeee6fb7bba74d86d628137921e
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/tmux/files/patch-6a33a12798b2afeee6fb7bba74d86d628137921e	Mon May  4 08:23:47 2020	(r533903)
@@ -0,0 +1,18 @@
+From 6a33a12798b2afeee6fb7bba74d86d628137921e Mon Sep 17 00:00:00 2001
+From: Nicholas Marriott <nicholas.marriott@gmail.com>
+Date: Thu, 30 Apr 2020 15:20:08 +0100
+Subject: [PATCH] Do not remove the automatic-rename option from the global
+ set, only from the window (it must stay in the global set or tmux will
+ crash). GitHub issue 2188.
+
+--- input.c.orig	2020-04-29 20:01:18 UTC
++++ input.c
+@@ -2304,7 +2304,7 @@ input_exit_rename(struct input_ctx *ictx)
+ 		return;
+ 
+ 	if (ictx->input_len == 0) {
+-		oe = options_get(wp->window->options, "automatic-rename");
++		oe = options_get_only(wp->window->options, "automatic-rename");
+ 		if (oe != NULL)
+ 			options_remove(oe);
+ 		return;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005040823.0448NmpL003219>