summaryrefslogtreecommitdiff
path: root/editors/nano/patches
diff options
context:
space:
mode:
authorwiedi <wiedi>2016-06-19 10:43:34 +0000
committerwiedi <wiedi>2016-06-19 10:43:34 +0000
commit91671113a18a70c3db41890d0ccc1a5d8a1806ff (patch)
treed3a400120ef1f74f28db6b2262fb31ac070a7d35 /editors/nano/patches
parent785c59f380fcf8cf37a1d326420dcd3f5db30668 (diff)
downloadpkgsrc-91671113a18a70c3db41890d0ccc1a5d8a1806ff.tar.gz
Update editors/nano to 2.6.0
2016.06.17 - nano 2.6.0 "Rubicon" fixes more than fifty little bugs -- and some of them not so little. It improves moving about in the file browser, corrects failings of the internal spell checker, adds a new feature (comment/uncomment lines, with default binding M-3), makes some error messages clearer, shows more of a file when positionlog is used and the cursor is near the end, displays all error messages at startup if there are multiple ones, does not misinterpret keystrokes when typing very fast, is less eager to trim the filename on narrow terminals, speeds up case-insensitive searches, and allows to abort re-searches. Among bunches of other things. It is worth the trouble to upgrade.
Diffstat (limited to 'editors/nano/patches')
-rw-r--r--editors/nano/patches/patch-src_files.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/editors/nano/patches/patch-src_files.c b/editors/nano/patches/patch-src_files.c
deleted file mode 100644
index 79587bd0838..00000000000
--- a/editors/nano/patches/patch-src_files.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-src_files.c,v 1.1 2016/03/26 20:21:37 bsiegert Exp $
-
---- src/files.c.orig 2016-02-25 20:47:10.000000000 +0000
-+++ src/files.c
-@@ -43,7 +43,7 @@ bool has_valid_path(const char *filename
- if (strrchr(filename, '/') == NULL)
- parentdir = mallocstrcpy(NULL, ".");
- else
-- parentdir = dirname(mallocstrcpy(NULL, filename));
-+ parentdir = mallocstrcpy(NULL, dirname(filename));
-
- if (stat(parentdir, &parentinfo) == -1) {
- if (errno == ENOENT)