diff options
author | obache <obache@pkgsrc.org> | 2007-10-26 16:44:37 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2007-10-26 16:44:37 +0000 |
commit | 6832d12d144fd25d8abbd0087b1d1031f88a1328 (patch) | |
tree | 45254464ef6fc04a0a16f925742b89a2cd1af901 /editors/nano | |
parent | ca603f1a88efb546bc15564af2807e14c32a9853 (diff) | |
download | pkgsrc-6832d12d144fd25d8abbd0087b1d1031f88a1328.tar.gz |
Fixes cursor update problem in prompt windows with NetBSD's curses,
reported in PR 37208.
Bump PKGREVISION.
Diffstat (limited to 'editors/nano')
-rw-r--r-- | editors/nano/Makefile | 3 | ||||
-rw-r--r-- | editors/nano/distinfo | 3 | ||||
-rw-r--r-- | editors/nano/patches/patch-ab | 12 |
3 files changed, 16 insertions, 2 deletions
diff --git a/editors/nano/Makefile b/editors/nano/Makefile index 7f2637678c6..1e7188f68a2 100644 --- a/editors/nano/Makefile +++ b/editors/nano/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.29 2007/10/24 15:28:38 obache Exp $ +# $NetBSD: Makefile,v 1.30 2007/10/26 16:44:37 obache Exp $ DISTNAME= nano-2.0.6 +PKGREVISION= 1 CATEGORIES= editors MASTER_SITES= http://www.nano-editor.org/dist/v2.0/ diff --git a/editors/nano/distinfo b/editors/nano/distinfo index 89ea0db9881..2e70fd08b73 100644 --- a/editors/nano/distinfo +++ b/editors/nano/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.12 2007/10/24 15:28:38 obache Exp $ +$NetBSD: distinfo,v 1.13 2007/10/26 16:44:37 obache Exp $ SHA1 (nano-2.0.6.tar.gz) = 00102580404cdb1c8594e5f6193000d5acac2249 RMD160 (nano-2.0.6.tar.gz) = 858dc7cf7137cc2b19e9084a503fe508ef734381 Size (nano-2.0.6.tar.gz) = 1315207 bytes SHA1 (patch-aa) = 0d6ed0ab2df9bdef495b26e63ee1a3cac41d7d1b +SHA1 (patch-ab) = ff806ee94169dd418bb7893b93a75a6820c1663c diff --git a/editors/nano/patches/patch-ab b/editors/nano/patches/patch-ab new file mode 100644 index 00000000000..ddcd24faf98 --- /dev/null +++ b/editors/nano/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.1 2007/10/26 16:44:38 obache Exp $ + +--- src/prompt.c.orig 2007-10-26 13:16:08.000000000 +0000 ++++ src/prompt.c +@@ -1122,6 +1122,7 @@ int get_prompt_string(bool allow_tabs, + #endif + + reset_statusbar_cursor(); ++ wrefresh(bottomwin); + } + + #ifndef NANO_TINY |