1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-06 15:40:29 +02:00

(unsetenv): New, for completeness.

This commit is contained in:
Marius Vollmer 2002-05-09 19:36:30 +00:00
parent 91d14235cd
commit 5c1254dae0

View file

@ -599,6 +599,10 @@
(putenv (string-append name "=" value)) (putenv (string-append name "=" value))
(putenv name))) (putenv name)))
(define (unsetenv name)
"Remove the entry for NAME from the environment."
(putenv name))
;;; {Load Paths} ;;; {Load Paths}
;;; ;;;