1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

(substring-fill!): New, for compatability.

This commit is contained in:
Marius Vollmer 2005-06-05 17:24:52 +00:00
parent 92205699d0
commit 1b05b32436

View file

@ -79,6 +79,11 @@
(char_pred (string-ref s (1- end))))
(string-every-c-code char_pred s start end))))
;; A variant of string-fill! that we keep for compatability
;;
(define (substring-fill! str start end fill)
(string-fill! str fill start end))
;;; {EVAL-CASE}