diff options
author | Max Khon <fjoe@FreeBSD.org> | 2012-08-29 13:46:28 +0000 |
---|---|---|
committer | Max Khon <fjoe@FreeBSD.org> | 2012-08-29 13:46:28 +0000 |
commit | 0dea6ea6ddef460c48d74b8056edbe5cf8e09e76 (patch) | |
tree | 9dba8d50eb5e08a1610ad26fb820e29b4e90f783 /misc/mc | |
parent | - Update www/mod_spdy to v0.9.2.2 (diff) |
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
Notes
Notes:
svn path=/head/; revision=303340
Diffstat (limited to 'misc/mc')
-rw-r--r-- | misc/mc/Makefile | 1 | ||||
-rw-r--r-- | misc/mc/files/patch-lib-widget-input.c | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/misc/mc/Makefile b/misc/mc/Makefile index 6913db44a427..4435b3ce1ea4 100644 --- a/misc/mc/Makefile +++ b/misc/mc/Makefile @@ -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} diff --git a/misc/mc/files/patch-lib-widget-input.c b/misc/mc/files/patch-lib-widget-input.c new file mode 100644 index 000000000000..a59f23cd6630 --- /dev/null +++ b/misc/mc/files/patch-lib-widget-input.c @@ -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); + } + + /* --------------------------------------------------------------------------------------------- */ |