summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-03-28 07:09:19 +0100
committerPatrice Clement <monsieurp@gentoo.org>2019-03-29 00:12:34 +0100
commitf6f0c7b625cd2da20b39f52338acb3dc866239c6 (patch)
tree5be76f16b30ad149ce5c6298ec173201ee18bd86 /app-editors/nano
parentapp-misc/emelfm2: update HOMEPAGE. (diff)
downloadgentoo-f6f0c7b625cd2da20b39f52338acb3dc866239c6.tar.gz
gentoo-f6f0c7b625cd2da20b39f52338acb3dc866239c6.tar.bz2
gentoo-f6f0c7b625cd2da20b39f52338acb3dc866239c6.zip
app-editors/nano: remove unused patch(es).
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11520 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-editors/nano')
-rw-r--r--app-editors/nano/files/nano-3.1-enable_tiny_build_fix.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/app-editors/nano/files/nano-3.1-enable_tiny_build_fix.patch b/app-editors/nano/files/nano-3.1-enable_tiny_build_fix.patch
deleted file mode 100644
index 58fe1982be9c..000000000000
--- a/app-editors/nano/files/nano-3.1-enable_tiny_build_fix.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 368ec04870a366b19f1c5801a6868786547968b0 Mon Sep 17 00:00:00 2001
-From: Benno Schulenberg <bensberg@telfort.nl>
-Date: Wed, 19 Sep 2018 20:36:39 +0200
-Subject: build: fix compilation again when configured with --enable-tiny
-
-Reported-by: Jordi Mallach <jordi@mallach.net>
----
- src/nano.c | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/src/nano.c b/src/nano.c
-index ebb1f11..01f92a1 100644
---- a/src/nano.c
-+++ b/src/nano.c
-@@ -1756,7 +1756,10 @@ int do_input(bool allow_funcs)
- if (shortcut == NULL)
- pletion_line = NULL;
- else {
-- if (ISSET(VIEW_MODE) && shortcut->func != do_toggle_void &&
-+ if (ISSET(VIEW_MODE) &&
-+#ifndef NANO_TINY
-+ shortcut->func != do_toggle_void &&
-+#endif
- !okay_for_view(shortcut)) {
- print_view_warning();
- return ERR;
---
-cgit v1.0-41-gc330
-