branch: externals/kiwix commit 6c4d80aad04aa5c0f98f559e3cd7a12542ad05cf Author: stardiviner <numbch...@gmail.com> Commit: stardiviner <numbch...@gmail.com>
fix `request' :error sentinel. --- kiwix.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwix.el b/kiwix.el index f706ee8..5a13694 100644 --- a/kiwix.el +++ b/kiwix.el @@ -194,8 +194,8 @@ for query string and library interactively." :parser (lambda () (libxml-parse-html-region (point-min) (point-max))) :success (function* (lambda (&key data &allow-other-keys) (setq kiwix-server-available? t))) - :error (lambda (&rest args &key error-thrown &allow-other-keys) - (setq kiwix-server-available? nil))) + :error (function* (lambda (&rest args &key error-thrown &allow-other-keys) + (setq kiwix-server-available? nil)))) (if kiwix-server-available? (let* ((library (if (or kiwix-search-interactively interactively) (kiwix-select-library)