1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00

Fix unfetchable problem.

Import "custom-1.9962.patch" in patches directory, because there is no
this patch's PATCH_SITES.
NOTE: This patch is too short. Including it in the ports tree is no problem. :)
This commit is contained in:
Shigeyuki Fukushima 2000-01-08 16:36:44 +00:00
parent fdeab08731
commit ab685b2a17
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=24555
2 changed files with 12 additions and 4 deletions

View File

@ -8,10 +8,6 @@
MAINTAINER= shige@FreeBSD.org
PATCHFILES= custom-1.9962.patch
PATCH_SITES= ftp://ftp.jpl.org/pub/elisp/semi-gnus-mule23@1934/
PATCH_DIST_STRIP= -p1
# This is a slave port.
PORTCLASS= slave
@ -26,6 +22,7 @@ HAVE_COMMON_PORT= YES
# pkg/* files but PLIST are used in ${.CURDIR}
PKGDIR= ${.CURDIR}/pkg
PATCHDIR= ${.CURDIR}/patches
PLIST= ${MASTERDIR}/pkg/PLIST
.include <${MASTERDIR}/Makefile>

View File

@ -0,0 +1,11 @@
--- cus-face.el.orig Wed Mar 4 19:52:39 1998
+++ cus-face.el Mon Mar 9 08:05:33 1998
@@ -96,7 +96,7 @@
"Define a new FACE on all frames, ignoring X resources."
(interactive "SMake face: ")
(or (internal-find-face name)
- (let ((face (make-vector 8 nil)))
+ (let ((face (make-vector face-vector-length nil)))
(aset face 0 'face)
(aset face 1 name)
(let* ((frames (frame-list))