diff options
author | shige <shige@FreeBSD.org> | 2000-05-11 22:54:57 +0800 |
---|---|---|
committer | shige <shige@FreeBSD.org> | 2000-05-11 22:54:57 +0800 |
commit | f18eea36c6ce8f0a72d154451770072006e4290f (patch) | |
tree | c72d0f30cb1f641f791319482aef1ee18e748ad0 | |
parent | ef072e994a3d32fda4b2c892e819b1a006c3e33a (diff) | |
download | freebsd-ports-gnome-f18eea36c6ce8f0a72d154451770072006e4290f.tar.gz freebsd-ports-gnome-f18eea36c6ce8f0a72d154451770072006e4290f.tar.zst freebsd-ports-gnome-f18eea36c6ce8f0a72d154451770072006e4290f.zip |
Fix byte-compile problem on XEmacs 20 and earlier.
-rw-r--r-- | editors/apel-emacs/files/patch-ad | 33 | ||||
-rw-r--r-- | editors/apel/files/patch-ad | 33 |
2 files changed, 66 insertions, 0 deletions
diff --git a/editors/apel-emacs/files/patch-ad b/editors/apel-emacs/files/patch-ad new file mode 100644 index 000000000000..24eb58bc5534 --- /dev/null +++ b/editors/apel-emacs/files/patch-ad @@ -0,0 +1,33 @@ +diff -urN EMU-ELS.orig EMU-ELS +--- EMU-ELS.orig Thu Jan 13 07:06:35 2000 ++++ EMU-ELS Tue Apr 25 09:03:54 2000 +@@ -50,20 +50,24 @@ + + ;; pccl modules; pccl modules depend on broken. + (cond +- ((featurep 'mule) ++ ((featurep 'xemacs) + (cond + ;; XEmacs 21 w/ mule. +- ((and (featurep 'xemacs) ++ ((and (featurep 'mule) + (>= emacs-major-version 21)) + '(pccl-20 pccl)) ++ (t ++ '(pccl)))) ++ ((featurep 'mule) ++ (cond + ;; Emacs 20. + ((>= emacs-major-version 20) + '(pccl-20 pccl)) ++ ;; Mule 1.* and 2.*. + (t +- ;; Mule 1.* and 2.*. + '(pccl-om pccl)))) +- (t +- '(pccl))) ++ (t ++ '(pccl))) + + ;; pces modules; pces modules depend on poe. + (cond diff --git a/editors/apel/files/patch-ad b/editors/apel/files/patch-ad new file mode 100644 index 000000000000..24eb58bc5534 --- /dev/null +++ b/editors/apel/files/patch-ad @@ -0,0 +1,33 @@ +diff -urN EMU-ELS.orig EMU-ELS +--- EMU-ELS.orig Thu Jan 13 07:06:35 2000 ++++ EMU-ELS Tue Apr 25 09:03:54 2000 +@@ -50,20 +50,24 @@ + + ;; pccl modules; pccl modules depend on broken. + (cond +- ((featurep 'mule) ++ ((featurep 'xemacs) + (cond + ;; XEmacs 21 w/ mule. +- ((and (featurep 'xemacs) ++ ((and (featurep 'mule) + (>= emacs-major-version 21)) + '(pccl-20 pccl)) ++ (t ++ '(pccl)))) ++ ((featurep 'mule) ++ (cond + ;; Emacs 20. + ((>= emacs-major-version 20) + '(pccl-20 pccl)) ++ ;; Mule 1.* and 2.*. + (t +- ;; Mule 1.* and 2.*. + '(pccl-om pccl)))) +- (t +- '(pccl))) ++ (t ++ '(pccl))) + + ;; pces modules; pces modules depend on poe. + (cond |