mes: Remove copy of make-string.
* mes/module/mes/guile.mes (make-string): Remove copy.
This commit is contained in:
parent
614bfeb3b8
commit
0be3bea141
|
@ -46,9 +46,6 @@
|
||||||
(else (error (format #f "not supported: handle-delim=~a" handle-delim))))
|
(else (error (format #f "not supported: handle-delim=~a" handle-delim))))
|
||||||
(cons c (loop (read-char port)))))))))
|
(cons c (loop (read-char port)))))))))
|
||||||
|
|
||||||
(define (make-string n . fill)
|
|
||||||
(list->string (apply make-list n fill)))
|
|
||||||
|
|
||||||
(define (object->string x . rest)
|
(define (object->string x . rest)
|
||||||
(with-output-to-string
|
(with-output-to-string
|
||||||
(lambda () ((if (pair? rest) (car rest) write) x))))
|
(lambda () ((if (pair? rest) (car rest) write) x))))
|
||||||
|
|
Loading…
Reference in a new issue