mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 04:40:29 +02:00
* posix.scm (setgrent): pass #t, not #f. thanks to
Jacques A. Vidrine.
This commit is contained in:
parent
e655d03424
commit
deaecea77d
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue