Bug 68617 - editors/tamago: fix problem of japanese-egg-anthy waiting porcess output forever
Summary: editors/tamago: fix problem of japanese-egg-anthy waiting porcess output forever
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-07-02 22:10 UTC by SANETO Takanori
Modified: 2004-07-04 15:58 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description SANETO Takanori 2004-07-02 22:10:22 UTC
      tamago-emacs21 with japanese-egg-anthy input method cause emacs hung in some situation.

Fix: Following patch should fix the problem. I've sent this patch to tamago ML, too.



;;; XXX: Don't kill buffer (for now) so that I can debug this program--XKy0eqHCh80IdUqj7pUSdNCWckdJVT2Q1JkyhPkdC1j9Buil
Content-Type: text/plain; name="file.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="file.diff"

--- egg/anthy.el.orig   Fri Jul  2 16:47:06 2004
+++ egg/anthy.el        Fri Jul  2 16:47:52 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))
How-To-Repeat:       In japanese-egg-anthy input method, press C-c after converting input string to kanji. When you try to convert the result again, emacs stops responding (C-g works).
Comment 1 MANTANI Nobutaka freebsd_committer freebsd_triage 2004-07-04 15:57:48 UTC
State Changed
From-To: open->closed

Committed, thanks!