1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 13:00:26 +02:00

* posix.scm (setgrent): pass #t, not #f. thanks to

Jacques A. Vidrine.
This commit is contained in:
Gary Houston 2000-09-30 15:53:36 +00:00
parent e655d03424
commit deaecea77d
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2000-09-30 Gary Houston <ghouston@arglist.com>
* posix.scm (setgrent): pass #t, not #f. thanks to
Jacques A. Vidrine.
2000-09-29 Neil Jerram <neil@ossau.uklinux.net>
* documentation.scm (find-documentation-in-file): Modified

View file

@ -63,7 +63,7 @@
(define (getpwuid uid) (getpw uid))
(define (getgrent) (getgr))
(define (setgrent) (setgr #f))
(define (setgrent) (setgr #t))
(define (endgrent) (setgr))
(define (getgrnam name) (getgr name))