diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2017-11-18 13:40:21 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-11-18 19:03:42 +0100 |
commit | 952ccad88687bd307a8bb0df235030de197d2317 (patch) | |
tree | f3685e7225e1d88de264b49cb2e429b1c9da21d2 /app-editors/xemacs | |
parent | net-wireless/wpa_supplicant: remove unused patches (diff) | |
download | gentoo-952ccad88687bd307a8bb0df235030de197d2317.tar.gz gentoo-952ccad88687bd307a8bb0df235030de197d2317.tar.bz2 gentoo-952ccad88687bd307a8bb0df235030de197d2317.zip |
app-editors/xemacs: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/6225
Diffstat (limited to 'app-editors/xemacs')
-rw-r--r-- | app-editors/xemacs/files/xemacs-21.5.29-optimization-bug.patch | 14 | ||||
-rw-r--r-- | app-editors/xemacs/files/xemacs-21.5.33-no-mule-build.patch | 33 |
2 files changed, 0 insertions, 47 deletions
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." |