summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-editors/nano/files/nano-1.3.6-debug-typo.patch')
-rw-r--r--app-editors/nano/files/nano-1.3.6-debug-typo.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/app-editors/nano/files/nano-1.3.6-debug-typo.patch b/app-editors/nano/files/nano-1.3.6-debug-typo.patch
deleted file mode 100644
index 3d13327a55c1..000000000000
--- a/app-editors/nano/files/nano-1.3.6-debug-typo.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Fix a simple typo when building with debug turned on.
-
-http://bugs.gentoo.org/show_bug.cgi?id=86339
-
---- src/chars.c
-+++ src/chars.c
-@@ -455,7 +455,7 @@
- {
- size_t pos_prev = pos;
-
-- assert(str != NULL && pos <= strlen(buf));
-+ assert(buf != NULL && pos <= strlen(buf));
-
- /* There is no library function to move backward one multibyte
- * character. Here is the naive, O(pos) way to do it. */