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/scite/files/
Date: Thu, 07 Jul 2016 09:04:58
Message-Id: 1467875949.1b1d131cb7d9688e15bd42e4b4e300560d24fb83.monsieurp@gentoo
1 commit: 1b1d131cb7d9688e15bd42e4b4e300560d24fb83
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 4 19:28:21 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 7 07:19:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b1d131c
7
8 app-editor/scite: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/1826
11
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 app-editors/scite/files/scite-3.0.1-no-lua.patch | 16 ----------------
15 1 file changed, 16 deletions(-)
16
17 diff --git a/app-editors/scite/files/scite-3.0.1-no-lua.patch b/app-editors/scite/files/scite-3.0.1-no-lua.patch
18 deleted file mode 100644
19 index d63416a..0000000
20 --- a/app-editors/scite/files/scite-3.0.1-no-lua.patch
21 +++ /dev/null
22 @@ -1,16 +0,0 @@
23 -diff -Nru 3.0.1.vanilla/scite/src/SciTEProps.cxx 3.0.1/scite/src/SciTEProps.cxx
24 ---- 3.0.1.vanilla/scite/src/SciTEProps.cxx 2011-11-30 19:39:41.059801342 +0100
25 -+++ 3.0.1/scite/src/SciTEProps.cxx 2011-11-30 19:39:53.211835004 +0100
26 -@@ -1702,10 +1702,12 @@
27 -
28 - // return the int value of the command name passed in.
29 - int SciTEBase::GetMenuCommandAsInt(SString commandName) {
30 -+#ifndef NO_LUA
31 - int i = IFaceTable::FindConstant(commandName.c_str());
32 - if (i != -1) {
33 - return IFaceTable::constants[i].value;
34 - }
35 -+#endif
36 - // Otherwise we might have entered a number as command to access a "SCI_" command
37 - return commandName.value();
38 - }