diff options
author | fjoe <fjoe@FreeBSD.org> | 2012-08-29 21:46:28 +0800 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2012-08-29 21:46:28 +0800 |
commit | 48fc3242440627e4481cf57055be66cf4bb6589f (patch) | |
tree | 9dba8d50eb5e08a1610ad26fb820e29b4e90f783 /misc | |
parent | 448ed36b1a5fab3f45de57ba668ec7f3a22001d5 (diff) | |
download | freebsd-ports-gnome-48fc3242440627e4481cf57055be66cf4bb6589f.tar.gz freebsd-ports-gnome-48fc3242440627e4481cf57055be66cf4bb6589f.tar.zst freebsd-ports-gnome-48fc3242440627e4481cf57055be66cf4bb6589f.zip |
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
Diffstat (limited to 'misc')
-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); + } + + /* --------------------------------------------------------------------------------------------- */ |