Initialize the 'IFS' variable.

* gash/environment.scm (initial-variables): Initialize 'IFS'.
This commit is contained in:
Timothy Sample 2019-10-12 09:33:06 -04:00
parent d6a582f1bd
commit 9d98405821
1 changed files with 2 additions and 1 deletions

View File

@ -115,7 +115,8 @@
(alist->hash-table
(map (match-lambda
((name . value) `(,name . ,(vector value #t #f))))
(append `(("PWD" . ,(initial-pwd env))
(append `(("IFS" . " \t\n")
("PWD" . ,(initial-pwd env))
("SHELL" . ,(car (command-line)))
("SHELLOPTS" . ""))
env)))))