1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

gpgscm: Improve error reporting.

* tests/gpgscm/init.scm (throw'): Guard against 'args' being atomic.
* tests/gpgscm/scheme.c (Eval_Cycle): Remove any superfluous colons in
error messages.

Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
Justus Winter 2017-06-19 16:13:24 +02:00
parent b766d3d103
commit 4c8be58fd4
No known key found for this signature in database
GPG key ID: DD1A52F9DA8C9020
2 changed files with 27 additions and 25 deletions

View file

@ -615,7 +615,7 @@
(display message)
(when (and args (not (null? args)))
(display ": ")
(if (string? (car args))
(if (and (pair? args) (string? (car args)))
(begin (display (car args))
(unless (null? (cdr args))
(newline)