Date: Wed, 29 Aug 2012 13:46:28 +0000 (UTC) From: Max Khon <fjoe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r303340 - in head/misc/mc: . files Message-ID: <201208291346.q7TDkSqq054843@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: fjoe Date: Wed Aug 29 13:46:28 2012 New Revision: 303340 URL: http://svn.freebsd.org/changeset/ports/303340 Log: Fix bug: alt+h command input line not updated The fix is obtained from the upstream: https://www.midnight-commander.org/ticket/2810 PR: 171157 Added: head/misc/mc/files/patch-lib-widget-input.c (contents, props changed) Modified: head/misc/mc/Makefile Modified: head/misc/mc/Makefile ============================================================================== --- head/misc/mc/Makefile Wed Aug 29 13:29:16 2012 (r303339) +++ head/misc/mc/Makefile Wed Aug 29 13:46:28 2012 (r303340) @@ -7,6 +7,7 @@ PORTNAME= mc PORTVERSION= 4.8.1.4 +PORTREVISION= 1 CATEGORIES= misc shells MASTER_SITES= http://www.midnight-commander.org/downloads/ \ ${MASTER_SITE_SUNSITE} Added: head/misc/mc/files/patch-lib-widget-input.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/mc/files/patch-lib-widget-input.c Wed Aug 29 13:46:28 2012 (r303340) @@ -0,0 +1,10 @@ +--- lib/widget/input.c.orig 2012-08-29 20:27:24.000000000 +0700 ++++ lib/widget/input.c 2012-08-29 20:27:53.000000000 +0700 +@@ -1179,6 +1179,7 @@ + in->mark = 0; + in->need_push = TRUE; + in->charpoint = 0; ++ input_update (in, TRUE); + } + + /* --------------------------------------------------------------------------------------------- */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208291346.q7TDkSqq054843>