Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/xemacs/files/
Date: Sat, 18 Nov 2017 18:04:05
Message-Id: 1511028222.952ccad88687bd307a8bb0df235030de197d2317.soap@gentoo
1 commit: 952ccad88687bd307a8bb0df235030de197d2317
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Nov 18 12:40:21 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 18 18:03:42 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=952ccad8
7
8 app-editors/xemacs: remove unused patches
9
10 Closes: https://github.com/gentoo/gentoo/pull/6225
11
12 .../files/xemacs-21.5.29-optimization-bug.patch | 14 ---------
13 .../files/xemacs-21.5.33-no-mule-build.patch | 33 ----------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/app-editors/xemacs/files/xemacs-21.5.29-optimization-bug.patch b/app-editors/xemacs/files/xemacs-21.5.29-optimization-bug.patch
17 deleted file mode 100644
18 index 32a1a02c2ab..00000000000
19 --- a/app-editors/xemacs/files/xemacs-21.5.29-optimization-bug.patch
20 +++ /dev/null
21 @@ -1,14 +0,0 @@
22 -Work around a GCC optimization bug as described in
23 -http://tracker.xemacs.org/XEmacs/its/issue354
24 -
25 ---- src/dumper.c.~1~ 2008-01-26 09:54:11.000000000 +0100
26 -+++ src/dumper.c 2008-05-03 10:17:03.000000000 +0200
27 -@@ -2584,7 +2584,7 @@
28 - #endif /* !WIN32_NATIVE */
29 -
30 -
31 --static int
32 -+int
33 - pdump_file_try (Wexttext *exe_path)
34 - {
35 - Wexttext *w = exe_path + wext_strlen (exe_path);
36
37 diff --git a/app-editors/xemacs/files/xemacs-21.5.33-no-mule-build.patch b/app-editors/xemacs/files/xemacs-21.5.33-no-mule-build.patch
38 deleted file mode 100644
39 index 17e572044fa..00000000000
40 --- a/app-editors/xemacs/files/xemacs-21.5.33-no-mule-build.patch
41 +++ /dev/null
42 @@ -1,33 +0,0 @@
43 -diff -r a2912073be85 lisp/paragraphs.el
44 ---- a/lisp/paragraphs.el Wed Jun 19 09:30:30 2013 -0600
45 -+++ b/lisp/paragraphs.el Sat Jun 22 13:27:48 2013 +0200
46 -@@ -180,7 +180,10 @@
47 - :type '(choice regexp (const :tag "Use default value" nil)))
48 - (put 'sentence-end 'safe-local-variable 'string-or-null-p)
49 -
50 --(defcustom sentence-end-base "[.?!][]\"'”)}]*"
51 -+(defcustom sentence-end-base
52 -+ (concat "[.?!][]\"'"
53 -+ (if (featurep 'mule) (string (unicode-to-char #x201D)) "")
54 -+ ")}]*")
55 - "Regexp matching the basic end of a sentence, not including following space."
56 - :group 'paragraphs
57 - :type 'string
58 -@@ -201,14 +204,14 @@
59 - in between. See Info node `(elisp)Standard Regexps'."
60 - (or sentence-end
61 - ;; We accept non-break space along with space.
62 -- (concat (if sentence-end-without-period "\\w[ \u00a0][ \u00a0]\\|")
63 -+ (concat (if sentence-end-without-period "\\w[ \240][ \240]\\|")
64 - "\\("
65 - sentence-end-base
66 - (if sentence-end-double-space
67 -- "\\($\\|[ \u00a0]$\\|\t\\|[ \u00a0][ \u00a0]\\)" "\\($\\|[\t \u00a0]\\)")
68 -+ "\\($\\|[ \240]$\\|\t\\|[ \240][ \240]\\)" "\\($\\|[\t \240]\\)")
69 - "\\|[" sentence-end-without-space "]+"
70 - "\\)"
71 -- "[ \u00a0\t\n]*")))
72 -+ "[ \240\t\n]*")))
73 -
74 - (defcustom page-delimiter "^\014"
75 - "*Regexp describing line-beginnings that separate pages."