Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/nano/files/
Date: Thu, 28 Mar 2019 23:12:53
Message-Id: 1553814754.f6f0c7b625cd2da20b39f52338acb3dc866239c6.monsieurp@gentoo
1 commit: f6f0c7b625cd2da20b39f52338acb3dc866239c6
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Thu Mar 28 06:09:19 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 28 23:12:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6f0c7b6
7
8 app-editors/nano: remove unused patch(es).
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/11520
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 .../files/nano-3.1-enable_tiny_build_fix.patch | 29 ----------------------
15 1 file changed, 29 deletions(-)
16
17 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
18 deleted file mode 100644
19 index 58fe1982be9..00000000000
20 --- a/app-editors/nano/files/nano-3.1-enable_tiny_build_fix.patch
21 +++ /dev/null
22 @@ -1,29 +0,0 @@
23 -From 368ec04870a366b19f1c5801a6868786547968b0 Mon Sep 17 00:00:00 2001
24 -From: Benno Schulenberg <bensberg@×××××××.nl>
25 -Date: Wed, 19 Sep 2018 20:36:39 +0200
26 -Subject: build: fix compilation again when configured with --enable-tiny
27 -
28 -Reported-by: Jordi Mallach <jordi@×××××××.net>
29 ----
30 - src/nano.c | 5 ++++-
31 - 1 file changed, 4 insertions(+), 1 deletion(-)
32 -
33 -diff --git a/src/nano.c b/src/nano.c
34 -index ebb1f11..01f92a1 100644
35 ---- a/src/nano.c
36 -+++ b/src/nano.c
37 -@@ -1756,7 +1756,10 @@ int do_input(bool allow_funcs)
38 - if (shortcut == NULL)
39 - pletion_line = NULL;
40 - else {
41 -- if (ISSET(VIEW_MODE) && shortcut->func != do_toggle_void &&
42 -+ if (ISSET(VIEW_MODE) &&
43 -+#ifndef NANO_TINY
44 -+ shortcut->func != do_toggle_void &&
45 -+#endif
46 - !okay_for_view(shortcut)) {
47 - print_view_warning();
48 - return ERR;
49 ---
50 -cgit v1.0-41-gc330
51 -