1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-16 08:40:19 +02:00

Changes from arch/CVS synchronization

This commit is contained in:
Ludovic Courtès 2006-06-13 07:48:42 +00:00
parent d79a62db53
commit d15ad007c9
7 changed files with 83 additions and 3 deletions

View file

@ -28,6 +28,8 @@
exception:used-before-defined
exception:wrong-num-args exception:wrong-type-arg
exception:numerical-overflow
exception:struct-set!-denied
exception:miscellaneous-error
;; Reporting passes and failures.
run-test
@ -252,6 +254,10 @@
(cons 'wrong-type-arg "^Wrong type"))
(define exception:numerical-overflow
(cons 'numerical-overflow "^Numerical overflow"))
(define exception:struct-set!-denied
(cons 'misc-error "^set! denied for field"))
(define exception:miscellaneous-error
(cons 'misc-error "^.*"))
;;; Display all parameters to the default output port, followed by a newline.
(define (display-line . objs)