aboutsummaryrefslogtreecommitdiff
path: root/generic
diff options
context:
space:
mode:
authorDavid Aspinall2010-10-10 22:50:20 +0000
committerDavid Aspinall2010-10-10 22:50:20 +0000
commit99aaca98a009a75a0fcba5c67bd0eef79e9dbaf2 (patch)
tree3735d84da5ec3d52a749d68e33293fbbbaf8b2aa /generic
parent3a7b7a27a6069a968c3907f5c531f00249061a31 (diff)
Fix debug message format
Diffstat (limited to 'generic')
-rw-r--r--generic/proof-script.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/proof-script.el b/generic/proof-script.el
index 8b8f0fbc..c522c9e9 100644
--- a/generic/proof-script.el
+++ b/generic/proof-script.el
@@ -539,8 +539,8 @@ It is recorded in the span with the 'rawname property."
(cons (cons idiomsym (setq elts (make-hash-table)))
pg-script-portions)))
(if (gethash idsym elts)
- (proof-debug "Element named " name
- " (type " idiom ") was already in buffer."))
+ (proof-debug "Element named %s (type %s) was already in buffer."
+ name idiom))
(puthash idsym span elts)
;; Idiom and ID are stored in the span as symbols; name as a string.
(span-set-property span 'idiom idiomsym)