summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2017-05-18 16:31:03 +0100
committerAlex Bennée <alex.bennee@linaro.org>2017-05-18 16:31:03 +0100
commit5f9b03bf8927dd7764f088f7405ac2b2bbd83223 (patch)
treee2a57ebf869c355500f2dfdd07e38207abd3736c
parentaa56fff1aeef8633da1da61fb213c91fa5f60c31 (diff)
Minor doc fixes.
-rw-r--r--lava-jobs.el5
-rw-r--r--lava-rpc.el4
2 files changed, 4 insertions, 5 deletions
diff --git a/lava-jobs.el b/lava-jobs.el
index c4a4cfb..29d4d97 100644
--- a/lava-jobs.el
+++ b/lava-jobs.el
@@ -39,8 +39,7 @@
(defvar lava-job-info
nil
- "Association list of job info hashes, indexed by lava-job-%d
-symbols.")
+ "Association list of job info hashes, indexed by lava-job-%d symbols.")
(defun lava-jobs-make-index (jobspec-or-id)
"Return a unique symbol for a given jobspec-or-id for use in the
@@ -61,7 +60,7 @@ symbols.")
(cdr (assq lava-job lava-job-info))))
(defun lava-jobs-delete-hash (jobspec)
- "Remove the info hash for `JOBSPEC' from the list"
+ "Remove the info hash for `JOBSPEC' from the list."
(let ((index (lava-jobs-make-index jobspec)))
(setq lava-job-info (assq-delete-all index lava-job-info))))
diff --git a/lava-rpc.el b/lava-rpc.el
index 02634bb..ac83688 100644
--- a/lava-rpc.el
+++ b/lava-rpc.el
@@ -93,7 +93,7 @@ This is handy for debugging callbacks."
;;
;; We provide asynchronous and synchronous methods. You should use the
;; asynchronous methods for anything that might take some time with
-;; LAVA to avoid blocking Emacs.
+;; LAVA to avoid blocking Emacs.
;;
(defun lava-xml-async-rpc-call (callback method &optional params)
@@ -171,7 +171,7 @@ The URL should not contain the host information, it will be added by
url))
(url-request-extra-headers
`(("Authorization" . ,(lava-xml--make-auth-token)))))
- (url-retrieve lava-url callback cb-params)))
+ (url-retrieve lava-url callback cb-params t)))
(provide 'lava-rpc)
;;; lava-rpc.el ends here