diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2015-01-31 11:32:42 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2015-01-31 11:32:42 +0000 |
commit | 47129a3d1c47fcc9600c629b8229a18543217a3d (patch) | |
tree | d7051a44840f331027cf76c27de7d0544bdedfc8 /editors/tamago/files/patch-egg-wnn.el | |
parent | Update autogen to 5.18.4. (diff) |
- Fix a bug that deactivate-input-method was not called in
(egg-exit-from-minibuffer).
- Remove an unnecessary overriding-local-map call in
(menudiag-select-internal).
- Regenerate patch files.
Notes
Notes:
svn path=/head/; revision=378202
Diffstat (limited to 'editors/tamago/files/patch-egg-wnn.el')
-rw-r--r-- | editors/tamago/files/patch-egg-wnn.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/editors/tamago/files/patch-egg-wnn.el b/editors/tamago/files/patch-egg-wnn.el index 11c6de2c5799..c6e7061711ec 100644 --- a/editors/tamago/files/patch-egg-wnn.el +++ b/editors/tamago/files/patch-egg-wnn.el @@ -1,5 +1,5 @@ ---- egg/wnn.el.2 2010-03-02 10:35:45.000000000 +0900 -+++ egg/wnn.el 2010-03-02 11:54:30.000000000 +0900 +--- egg/wnn.el.orig 2015-01-31 19:24:09.000000000 +0900 ++++ egg/wnn.el 2015-01-31 19:55:02.000000000 +0900 @@ -82,6 +82,10 @@ (const wnn-uniq) (const wnn-uniq-kanji))) @@ -123,6 +123,7 @@ - (+ port port-off))) - ((error quit)))) - (when proc +- (process-kill-without-query proc) + (if (fboundp 'make-network-process) + (condition-case nil + (setq proc (make-network-process :name proc-name :buffer buf :host host :service port :family family)) @@ -134,7 +135,7 @@ + (setq proc (open-network-stream proc-name buf hostname port)) + (error quit))))) + (when (processp proc) - (process-kill-without-query proc) ++ (set-process-query-on-exit-flag proc nil) (set-process-coding-system proc 'binary 'binary) (set-process-sentinel proc 'wnn-comm-sentinel) (set-marker-insertion-type (process-mark proc) t) |