aboutsummaryrefslogtreecommitdiffhomepage
path: root/generic/pg-autotest.el
diff options
context:
space:
mode:
authorGravatar Erik Martin-Dorel <erik@martin-dorel.org>2018-08-23 00:01:12 +0200
committerGravatar Erik Martin-Dorel <erik@martin-dorel.org>2018-08-23 01:23:31 +0200
commit86d22428959a0f5aecef270e0f4dd7d4b5712fc3 (patch)
tree676fe59b7644498172f96b6da605745a6bf71a13 /generic/pg-autotest.el
parent3ba86af3271111cb056676c631b7caa6897e06f1 (diff)
Fix most doc issues raised by (checkdoc)
Diffstat (limited to 'generic/pg-autotest.el')
-rw-r--r--generic/pg-autotest.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/pg-autotest.el b/generic/pg-autotest.el
index bc3ab9c5..e7cb19a9 100644
--- a/generic/pg-autotest.el
+++ b/generic/pg-autotest.el
@@ -104,7 +104,7 @@
(format-time-string "%D %H:%M")))))
(defun pg-autotest-message (msg &rest args)
- "Give message MSG in log file output and on display."
+ "Give message MSG (formatted using ARGS) in log file output and on display."
(let ((fmsg (if args (apply 'format msg args) msg)))
(proof-with-current-buffer-if-exists
pg-autotest-log
@@ -217,7 +217,7 @@ completely processing the buffer as the last step."
(proof-shell-wait)
(decf jumps))
- ((and (eq random-thing 1)
+ ((and (eq random-thing 1)
(not (proof-locked-region-empty-p)))
(pg-autotest-message
" random jump: retracting whole buffer")
@@ -280,7 +280,7 @@ completely processing the buffer as the last step."
(defun pg-autotest-test-quit-prover ()
"Exit prover process."
(if (buffer-live-p proof-shell-buffer)
- (let ((kill-buffer-query-functions nil))
+ (let ((kill-buffer-query-functions nil))
(kill-buffer proof-shell-buffer))
(error "No proof shell buffer to kill")))