diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2018-11-11 05:03:33 +0000 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2018-11-11 05:03:33 +0000 |
commit | 6de5a3cdcd0f49a787f6fa2c4ce6dcbbe9049d40 (patch) | |
tree | 7e81b3dc9357643104c9c5d658f354909ce61c55 /www/emacs-w3m/files | |
parent | graphics/ImageMagick6: Fix patch that no longer applies after 484640 (diff) |
Update to 1.4.632 CVS snapshot on 2018/11/10.
Notes
Notes:
svn path=/head/; revision=484661
Diffstat (limited to 'www/emacs-w3m/files')
-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) |