diff options
author | kei <kei@pkgsrc.org> | 2003-04-16 23:20:50 +0000 |
---|---|---|
committer | kei <kei@pkgsrc.org> | 2003-04-16 23:20:50 +0000 |
commit | 7522f43bb25063c2348d130e509c6e1ca8e56e74 (patch) | |
tree | 3eb1099dcc000eebfbbd01204171387ad714c4c8 /editors/mule-ucs | |
parent | 4e8cc66f1c385b64e0477c0b8b6363d2e8343931 (diff) | |
download | pkgsrc-7522f43bb25063c2348d130e509c6e1ca8e56e74.tar.gz |
Pull in the diff against Mule-UCS-current and apply a part of it to
lisp/mucs-ccl.el to fix the bug which causes an error "Symbol's value as
variable is void: progn" when evaluating "(require 'un-define)" or
"(require 'jisx0213)".
bump PKGREVISION to 3.
Diffstat (limited to 'editors/mule-ucs')
-rw-r--r-- | editors/mule-ucs/Makefile | 4 | ||||
-rw-r--r-- | editors/mule-ucs/distinfo | 3 | ||||
-rw-r--r-- | editors/mule-ucs/patches/patch-ab | 18 |
3 files changed, 22 insertions, 3 deletions
diff --git a/editors/mule-ucs/Makefile b/editors/mule-ucs/Makefile index 075c0acdf6d..6a1a70ab91f 100644 --- a/editors/mule-ucs/Makefile +++ b/editors/mule-ucs/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2003/03/14 01:32:28 uebayasi Exp $ +# $NetBSD: Makefile,v 1.5 2003/04/16 23:20:50 kei Exp $ DISTNAME= Mule-UCS-0.84 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= editors MASTER_SITES= ftp://ftp.m17n.org/pub/mule/Mule-UCS/ diff --git a/editors/mule-ucs/distinfo b/editors/mule-ucs/distinfo index 9f21f89215c..d865a518ff2 100644 --- a/editors/mule-ucs/distinfo +++ b/editors/mule-ucs/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2003/03/14 01:26:40 uebayasi Exp $ +$NetBSD: distinfo,v 1.3 2003/04/16 23:20:50 kei Exp $ SHA1 (Mule-UCS-0.84.tar.gz) = aa796d3d9cce8b3c444752e8a3fc74ecf3d76979 Size (Mule-UCS-0.84.tar.gz) = 565222 bytes SHA1 (patch-aa) = 12ea72b6549e643c438171cc1ef2107d051e6ca6 +SHA1 (patch-ab) = aff0bcad70ef62a32409cba3f6e2e052993617c3 diff --git a/editors/mule-ucs/patches/patch-ab b/editors/mule-ucs/patches/patch-ab new file mode 100644 index 00000000000..0947c647cba --- /dev/null +++ b/editors/mule-ucs/patches/patch-ab @@ -0,0 +1,18 @@ +$NetBSD: patch-ab,v 1.1 2003/04/16 23:20:50 kei Exp $ + +--- lisp/mucs-ccl.el.orig Thu Apr 17 01:50:50 2003 ++++ lisp/mucs-ccl.el Thu Apr 17 01:52:12 2003 +@@ -639,10 +639,9 @@ + (mucs-notify-embedment 'mucs-ccl-required name) + (setq ccl-pgm-list (cdr ccl-pgm-list))) + ; (message "MCCLREGFIN:%S" result) +- `(progn +- (setq mucs-ccl-facility-alist +- (quote ,mucs-ccl-facility-alist)) +- ,@result))) ++ `((setq mucs-ccl-facility-alist ++ (quote ,mucs-ccl-facility-alist)) ++ ,@result))) + + ;;; Add hook for embedding translation informations to a package. + (add-hook 'mucs-package-definition-end-hook |