diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2004-07-04 14:57:22 +0000 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2004-07-04 14:57:22 +0000 |
commit | 4db22ef5887ba784a04dce0a2f68ddffc4f02dfd (patch) | |
tree | 9f1e28f3b31f4a742dc755baeb091efceeefa425 /editors/tamago-emacs21 | |
parent | 766213bcb0e953afd138759129c5f2b2fb7b7819 (diff) |
Fix hangup problem in japanese-egg-anthy input method.
PR: ports/68617
Submitted by: SANETO Takanori <sanewo@ba2.so-net.ne.jp>
Notes
Notes:
svn path=/head/; revision=112910
Diffstat (limited to 'editors/tamago-emacs21')
-rw-r--r-- | editors/tamago-emacs21/Makefile | 2 | ||||
-rw-r--r-- | editors/tamago-emacs21/files/patch-egg:anthy.el | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/editors/tamago-emacs21/Makefile b/editors/tamago-emacs21/Makefile index 02a15a72e00e..3056d06aac2e 100644 --- a/editors/tamago-emacs21/Makefile +++ b/editors/tamago-emacs21/Makefile @@ -7,7 +7,7 @@ PORTNAME= tamago PORTVERSION= 4.0.6.0.20020909.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= editors elisp MASTER_SITES= ${MASTER_SITE_DEBIAN} MASTER_SITE_SUBDIR= pool/main/e/egg diff --git a/editors/tamago-emacs21/files/patch-egg:anthy.el b/editors/tamago-emacs21/files/patch-egg:anthy.el new file mode 100644 index 000000000000..629e07790f82 --- /dev/null +++ b/editors/tamago-emacs21/files/patch-egg:anthy.el @@ -0,0 +1,13 @@ +--- egg/anthy.el.orig Thu Aug 8 17:11:22 2002 ++++ egg/anthy.el Sun Jul 4 23:48:18 2004 +@@ -118,8 +118,8 @@ + (save-excursion + (set-buffer buf) + (erase-buffer) +- (buffer-disable-undo)))) +- (anthyipc-get-greeting anthy-proc) ++ (buffer-disable-undo)) ++ (anthyipc-get-greeting anthy-proc))) + (anthyipc-new-context anthy-proc)) + + ;;; XXX: Don't kill buffer (for now) so that I can debug this program |