mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-03 05:20:16 +02:00
* boot-9.scm, rdelim.scm: Use "'()" instead of "()" in all places
where the empty list is meant.
This commit is contained in:
parent
9e6fc585b2
commit
bf4aaed27c
2 changed files with 2 additions and 2 deletions
|
@ -2745,5 +2745,5 @@
|
|||
|
||||
(define-module (guile))
|
||||
|
||||
(append! %load-path (cons "." ()))
|
||||
(append! %load-path (cons "." '()))
|
||||
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
(handle-delim (if (pair? args)
|
||||
(car args)
|
||||
'trim)))
|
||||
(let loop ((substrings ())
|
||||
(let loop ((substrings '())
|
||||
(total-chars 0)
|
||||
(buf-size 100)) ; doubled each time through.
|
||||
(let* ((buf (make-string buf-size))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue