aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2017-02-18 08:11:26 +0100
committerUlrich Müller <ulm@gentoo.org>2017-02-18 08:11:26 +0100
commit523c006893914c34bb63638d8e146fd5dc18016c (patch)
tree1e41b93392889a7671ad74f9f680453bbab551b5 /emacs/24.4/02_all_nil-in-load-path.patch
parentFix icons in toolbar with GTK+ 3.20.6, bug 588704. (diff)
downloademacs-patches-523c006893914c34bb63638d8e146fd5dc18016c.tar.gz
emacs-patches-523c006893914c34bb63638d8e146fd5dc18016c.tar.bz2
emacs-patches-523c006893914c34bb63638d8e146fd5dc18016c.zip
Remove 24.4 patchset.
Diffstat (limited to 'emacs/24.4/02_all_nil-in-load-path.patch')
-rw-r--r--emacs/24.4/02_all_nil-in-load-path.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/emacs/24.4/02_all_nil-in-load-path.patch b/emacs/24.4/02_all_nil-in-load-path.patch
deleted file mode 100644
index ffced77..0000000
--- a/emacs/24.4/02_all_nil-in-load-path.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Fix runtime failure when load-path contains a nil element.
-https://bugs.gentoo.org/528664
-http://thread.gmane.org/gmane.emacs.devel/176646
-
---- emacs-24.4-orig/lisp/startup.el
-+++ emacs-24.4/lisp/startup.el
-@@ -1319,6 +1319,7 @@
- (let (warned)
- (dolist (dir load-path)
- (and (not warned)
-+ (stringp dir)
- (string-match-p "/[._]emacs\\.d/?\\'" dir)
- (string-equal (file-name-as-directory (expand-file-name dir))
- (expand-file-name user-emacs-directory))