diff options
Diffstat (limited to 'www/emacs-w3m/files/patch-aclocal.m4')
-rw-r--r-- | www/emacs-w3m/files/patch-aclocal.m4 | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/www/emacs-w3m/files/patch-aclocal.m4 b/www/emacs-w3m/files/patch-aclocal.m4 deleted file mode 100644 index cecba1b19d50..000000000000 --- a/www/emacs-w3m/files/patch-aclocal.m4 +++ /dev/null @@ -1,30 +0,0 @@ ---- aclocal.m4.orig 2018-01-16 09:35:31 UTC -+++ aclocal.m4 -@@ -78,15 +78,18 @@ AC_DEFUN(AC_PATH_EMACS, - - AC_MSG_CHECKING([what a flavor does ${EMACS} have]) - AC_EMACS_LISP(flavor, -- (if (featurep (quote xemacs)) -- \"XEmacs\" -- (concat \"Emacs \" -- (mapconcat (function identity) -- (nreverse -- (cdr (nreverse -- (split-string emacs-version -- (concat (vector 92 46)))))) -- \".\"))), -+ (cond ((featurep (quote xemacs)) -+ \"XEmacs\") -+ ((= (length (split-string emacs-version (concat (vector 92 46)))) 2) -+ (concat \"Emacs \" emacs-version)) -+ (t -+ (concat \"Emacs \" -+ (mapconcat (function identity) -+ (nreverse -+ (cdr (nreverse -+ (split-string emacs-version -+ (concat (vector 92 46)))))) -+ \".\")))), - noecho) - case "${flavor}" in - XEmacs) |