diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-12-28 01:36:27 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-12-28 01:36:27 +0100 |
commit | 9c356f882c7cb084e8abddc50404d9a0675bb477 (patch) | |
tree | 9f6f4965927bc877f624999d2551a8b42be0ba87 /elisp | |
parent | 97cbd01379a9f337433e48292566e942c6e1973c (diff) | |
download | geiser-guile-9c356f882c7cb084e8abddc50404d9a0675bb477.tar.gz geiser-guile-9c356f882c7cb084e8abddc50404d9a0675bb477.tar.bz2 |
Bug fix: properly enqueue requests
I've observed that autodoc requests in connections to tekuti processes
often miss their deadline. This was causing serialization problems,
fixed (i think) by this patch; but we still have the problem of too
many misses, which could be fixed by making autodoc asynchronous (and
we probably need this for really remote connections anyway).
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-connection.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-connection.el b/elisp/geiser-connection.el index 49f0b0b..3638e12 100644 --- a/elisp/geiser-connection.el +++ b/elisp/geiser-connection.el @@ -211,7 +211,7 @@ (geiser-con--connection-eot c) r 'geiser-con--process-completed-request - nil)) + t)) ;;; Message sending interface: |