> From: David Michael <fedora....@gmail.com> > Date: Tue, 09 Sep 2014 17:28:42 -0400 > > -(define-once history-file (string-append (getenv "HOME") "/.guile_history")) > +(define-once history-file > + (string-append (or (getenv "HOME") "") "/.guile_history"))
Is there any guarantee that the root directory will be writable? How about "./.guile_history" instead?