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 | bbfb8ba77eb475573a0aae0af253a960a6269133 (patch) | |
tree | c96c8476c08eb5521c201a94afdcb1b7f3948bb2 | |
parent | 028555c46bcdacdbfa7bfee81271b9c5b41df39a (diff) | |
download | geiser-bbfb8ba77eb475573a0aae0af253a960a6269133.tar.gz geiser-bbfb8ba77eb475573a0aae0af253a960a6269133.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).
-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: |