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:
parent
b766d3d103
commit
4c8be58fd4
2 changed files with 27 additions and 25 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue