diff options
author | Benda XU <heroxbd@gentoo.org> | 2013-09-16 11:55:44 +0000 |
---|---|---|
committer | Benda XU <heroxbd@gentoo.org> | 2013-09-16 11:55:44 +0000 |
commit | 288a3d9ebf487670d80c0cef1ca1f614ef691f82 (patch) | |
tree | e0bc8603966d4e6dddb42fb337397d023051893f /app-emacs/scim-bridge-el/files | |
parent | initial commit (diff) | |
download | historical-288a3d9ebf487670d80c0cef1ca1f614ef691f82.tar.gz historical-288a3d9ebf487670d80c0cef1ca1f614ef691f82.tar.bz2 historical-288a3d9ebf487670d80c0cef1ca1f614ef691f82.zip |
initial commit
Package-Manager: portage-2.2.1/cvs/Linux x86_64
Diffstat (limited to 'app-emacs/scim-bridge-el/files')
-rw-r--r-- | app-emacs/scim-bridge-el/files/scim-bridge-el-0.8.2-im-agent.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app-emacs/scim-bridge-el/files/scim-bridge-el-0.8.2-im-agent.patch b/app-emacs/scim-bridge-el/files/scim-bridge-el-0.8.2-im-agent.patch new file mode 100644 index 000000000000..678eabdae246 --- /dev/null +++ b/app-emacs/scim-bridge-el/files/scim-bridge-el-0.8.2-im-agent.patch @@ -0,0 +1,25 @@ +run against scim-im-agent, after scim-bridge integration into scim. + +http://www.scim-im.org/news/scim_news/a_new_stable_version_has_been_released_the_main_change_is_the_incorporation_of_scim_bridge +--- a/scim-bridge.el ++++ b/scim-bridge.el +@@ -649,7 +649,7 @@ + (defvar scim-bridge-compat-version "0.3.0") + (defvar scim-bridge-socket-dir "/tmp/") + (defvar scim-bridge-socket-name "socket") +-(defvar scim-bridge-name "scim-bridge") ++(defvar scim-bridge-name "scim-im-agent") + (defvar scim-bridge-host-name "localhost") + (defvar scim-bridge-socket-path-common + (concat scim-bridge-socket-dir scim-bridge-name "-" +@@ -2485,8 +2485,8 @@ + (i 0) + proc error) + (unless (file-exists-p socket) +- (scim-message "Launch SCIM-Bridge...")) +- (call-process-shell-command scim-bridge-name nil 0 nil "--noexit") ++ (scim-message "Launch SCIM-Bridge...") ++ (call-process-shell-command scim-bridge-name nil 0 nil "--noexit")) + (while (and (not (processp proc)) + (< i 10)) ; Try connection 10 times at maximum + (sleep-for (* 0.1 i)) |