mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-29 08:20:20 +02:00
* boot-9.scm (read-sharp): define directly, don't go through a
%read-sharp layer. * boot-9.scm (uniform-vector-set!): use uniform-array-set1!, not uniform-vector-set1! which doesn't exist.
This commit is contained in:
parent
9dcf6a0294
commit
c2132276b8
2 changed files with 12 additions and 6 deletions
|
@ -1,3 +1,13 @@
|
||||||
|
Sat Feb 15 04:51:20 1997 Gary Houston <ghouston@actrix.gen.nz>
|
||||||
|
|
||||||
|
* boot-9.scm (read-sharp): define directly, don't go through a
|
||||||
|
%read-sharp layer.
|
||||||
|
|
||||||
|
Tue Feb 11 08:45:48 1997 Gary Houston <ghouston@actrix.gen.nz>
|
||||||
|
|
||||||
|
* boot-9.scm (uniform-vector-set!): use uniform-array-set1!, not
|
||||||
|
uniform-vector-set1! which doesn't exist.
|
||||||
|
|
||||||
Mon Feb 10 03:01:48 1997 Mikael Djurfeldt <mdj@kenneth>
|
Mon Feb 10 03:01:48 1997 Mikael Djurfeldt <mdj@kenneth>
|
||||||
|
|
||||||
* boot-9.scm (backtrace): Removed. (A C version now exists in
|
* boot-9.scm (backtrace): Removed. (A C version now exists in
|
||||||
|
|
|
@ -284,7 +284,7 @@
|
||||||
(define make-uniform-vector dimensions->uniform-array)
|
(define make-uniform-vector dimensions->uniform-array)
|
||||||
; (define uniform-vector-ref array-ref)
|
; (define uniform-vector-ref array-ref)
|
||||||
(define (uniform-vector-set! u i o)
|
(define (uniform-vector-set! u i o)
|
||||||
(uniform-vector-set1! u o i))
|
(uniform-array-set1! u o i))
|
||||||
(define uniform-vector-fill! array-fill!)
|
(define uniform-vector-fill! array-fill!)
|
||||||
(define uniform-vector-read! uniform-array-read!)
|
(define uniform-vector-read! uniform-array-read!)
|
||||||
(define uniform-vector-write uniform-array-write)
|
(define uniform-vector-write uniform-array-write)
|
||||||
|
@ -940,7 +940,6 @@
|
||||||
(define end-of-program #f)
|
(define end-of-program #f)
|
||||||
(define hang-up #f)
|
(define hang-up #f)
|
||||||
(define arithmetic-error #f)
|
(define arithmetic-error #f)
|
||||||
(define read-sharp #f)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -965,7 +964,7 @@
|
||||||
(map string->symbol fields))))
|
(map string->symbol fields))))
|
||||||
|
|
||||||
|
|
||||||
(define (%read-sharp c port)
|
(define (read-sharp c port)
|
||||||
(define (barf)
|
(define (barf)
|
||||||
(error "unknown # object" c))
|
(error "unknown # object" c))
|
||||||
|
|
||||||
|
@ -1018,9 +1017,6 @@
|
||||||
(error "read:uniform-vector list not found")))
|
(error "read:uniform-vector list not found")))
|
||||||
|
|
||||||
|
|
||||||
(define read-sharp (lambda a (apply %read-sharp a)))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; {Dynamic Roots}
|
;;; {Dynamic Roots}
|
||||||
;;;
|
;;;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue