From 952ccad88687bd307a8bb0df235030de197d2317 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sat, 18 Nov 2017 13:40:21 +0100 Subject: app-editors/xemacs: remove unused patches Closes: https://github.com/gentoo/gentoo/pull/6225 --- .../files/xemacs-21.5.29-optimization-bug.patch | 14 --------- .../files/xemacs-21.5.33-no-mule-build.patch | 33 ---------------------- 2 files changed, 47 deletions(-) delete mode 100644 app-editors/xemacs/files/xemacs-21.5.29-optimization-bug.patch delete mode 100644 app-editors/xemacs/files/xemacs-21.5.33-no-mule-build.patch (limited to 'app-editors/xemacs') 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 deleted file mode 100644 index 32a1a02c2abe..000000000000 --- a/app-editors/xemacs/files/xemacs-21.5.29-optimization-bug.patch +++ /dev/null @@ -1,14 +0,0 @@ -Work around a GCC optimization bug as described in -http://tracker.xemacs.org/XEmacs/its/issue354 - ---- src/dumper.c.~1~ 2008-01-26 09:54:11.000000000 +0100 -+++ src/dumper.c 2008-05-03 10:17:03.000000000 +0200 -@@ -2584,7 +2584,7 @@ - #endif /* !WIN32_NATIVE */ - - --static int -+int - pdump_file_try (Wexttext *exe_path) - { - Wexttext *w = exe_path + wext_strlen (exe_path); 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 deleted file mode 100644 index 17e572044fac..000000000000 --- a/app-editors/xemacs/files/xemacs-21.5.33-no-mule-build.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff -r a2912073be85 lisp/paragraphs.el ---- a/lisp/paragraphs.el Wed Jun 19 09:30:30 2013 -0600 -+++ b/lisp/paragraphs.el Sat Jun 22 13:27:48 2013 +0200 -@@ -180,7 +180,10 @@ - :type '(choice regexp (const :tag "Use default value" nil))) - (put 'sentence-end 'safe-local-variable 'string-or-null-p) - --(defcustom sentence-end-base "[.?!][]\"'”)}]*" -+(defcustom sentence-end-base -+ (concat "[.?!][]\"'" -+ (if (featurep 'mule) (string (unicode-to-char #x201D)) "") -+ ")}]*") - "Regexp matching the basic end of a sentence, not including following space." - :group 'paragraphs - :type 'string -@@ -201,14 +204,14 @@ - in between. See Info node `(elisp)Standard Regexps'." - (or sentence-end - ;; We accept non-break space along with space. -- (concat (if sentence-end-without-period "\\w[ \u00a0][ \u00a0]\\|") -+ (concat (if sentence-end-without-period "\\w[ \240][ \240]\\|") - "\\(" - sentence-end-base - (if sentence-end-double-space -- "\\($\\|[ \u00a0]$\\|\t\\|[ \u00a0][ \u00a0]\\)" "\\($\\|[\t \u00a0]\\)") -+ "\\($\\|[ \240]$\\|\t\\|[ \240][ \240]\\)" "\\($\\|[\t \240]\\)") - "\\|[" sentence-end-without-space "]+" - "\\)" -- "[ \u00a0\t\n]*"))) -+ "[ \240\t\n]*"))) - - (defcustom page-delimiter "^\014" - "*Regexp describing line-beginnings that separate pages." -- cgit v1.2.3-65-gdbad