From owner-svn-ports-all@FreeBSD.ORG Tue Dec 9 15:58:51 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F2CFE21; Tue, 9 Dec 2014 15:58:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BB47812; Tue, 9 Dec 2014 15:58:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB9FwpQs039612; Tue, 9 Dec 2014 15:58:51 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB9Fwop2039610; Tue, 9 Dec 2014 15:58:50 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201412091558.sB9Fwop2039610@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 9 Dec 2014 15:58:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374403 - in head/misc/mc: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Dec 2014 15:58:51 -0000 Author: pi Date: Tue Dec 9 15:58:50 2014 New Revision: 374403 URL: https://svnweb.freebsd.org/changeset/ports/374403 QAT: https://qat.redports.org/buildarchive/r374403/ Log: misc/mc: really re-add small patch that was deleted in r369133 Thanks to tijl: patch syntax was bogus and was ignored. PR: 194627 Modified: head/misc/mc/Makefile head/misc/mc/files/patch-lib__tty__win.c Modified: head/misc/mc/Makefile ============================================================================== --- head/misc/mc/Makefile Tue Dec 9 15:55:40 2014 (r374402) +++ head/misc/mc/Makefile Tue Dec 9 15:58:50 2014 (r374403) @@ -3,7 +3,7 @@ PORTNAME= mc PORTVERSION= 4.8.13 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= misc shells MASTER_SITES= http://ftp.midnight-commander.org/ \ http://ftp.osuosl.org/pub/midnightcommander/ \ Modified: head/misc/mc/files/patch-lib__tty__win.c ============================================================================== --- head/misc/mc/files/patch-lib__tty__win.c Tue Dec 9 15:55:40 2014 (r374402) +++ head/misc/mc/files/patch-lib__tty__win.c Tue Dec 9 15:58:50 2014 (r374403) @@ -1,14 +1,14 @@ --- lib/tty/win.c.orig 2014-09-02 09:23:58 UTC +++ lib/tty/win.c -+@@ -95,7 +95,7 @@ -+ void -+ do_enter_ca_mode (void) -+ { -+- if (mc_global.tty.xterm_flag && smcup != NULL) -++ if (mc_global.tty.xterm_flag) -+ { -+ fprintf (stdout, /* ESC_STR ")0" */ ESC_STR "7" ESC_STR "[?47h"); -+ fflush (stdout); +@@ -95,7 +95,7 @@ + void + do_enter_ca_mode (void) + { +- if (mc_global.tty.xterm_flag && smcup != NULL) ++ if (mc_global.tty.xterm_flag) + { + fprintf (stdout, /* ESC_STR ")0" */ ESC_STR "7" ESC_STR "[?47h"); + fflush (stdout); @@ -107,7 +107,7 @@ void do_exit_ca_mode (void)