1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

(fill-message): check first whether args is null.

This commit is contained in:
Gary Houston 1996-09-07 21:34:09 +00:00
parent 7cb1d4d305
commit 9561554c13
2 changed files with 20 additions and 16 deletions

View file

@ -2,6 +2,7 @@ Sat Sep 7 06:44:47 1996 Gary Houston <ghouston@actrix.gen.nz>
* boot-9.scm (%%handle-system-error): recognise errors thrown * boot-9.scm (%%handle-system-error): recognise errors thrown
by lgh-error (fill-message etc.) by lgh-error (fill-message etc.)
(fill-message): check first whether args is null.
Thu Sep 5 11:33:41 1996 Jim Blandy <jimb@floss.cyclic.com> Thu Sep 5 11:33:41 1996 Jim Blandy <jimb@floss.cyclic.com>

View file

@ -677,7 +677,10 @@
(args (caddr arg-list)) (args (caddr arg-list))
(rest (cadddr arg-list)) (rest (cadddr arg-list))
(cep (current-error-port)) (cep (current-error-port))
(fill-message (lambda (message args) (fill-message
(lambda (message args)
(if (null? args)
(display message cep)
(let ((len (string-length message))) (let ((len (string-length message)))
(cond ((< len 2) (cond ((< len 2)
(display message cep)) (display message cep))
@ -692,7 +695,7 @@
cep) cep)
(fill-message (fill-message
(substring message 2 len) (substring message 2 len)
args))))))) args))))))))
(display "ERROR: " cep) (display "ERROR: " cep)
(display subr cep) (display subr cep)
(display ": " cep) (display ": " cep)