From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] guile-readline: Use an empty string if HOME is unset Date: Sun, 21 Sep 2014 23:38:25 -0400 Message-ID: <8738bkl3ym.fsf@yeeloong.lan> References: <87vbowa3g5.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1411357248 32613 80.91.229.3 (22 Sep 2014 03:40:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 22 Sep 2014 03:40:48 +0000 (UTC) Cc: guile-devel@gnu.org To: David Michael Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Sep 22 05:40:43 2014 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XVuUU-0006or-Sa for guile-devel@m.gmane.org; Mon, 22 Sep 2014 05:40:42 +0200 Original-Received: from localhost ([::1]:42126 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XVuUU-0002vD-Fi for guile-devel@m.gmane.org; Sun, 21 Sep 2014 23:40:42 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50286) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XVuUI-0002uB-85 for guile-devel@gnu.org; Sun, 21 Sep 2014 23:40:36 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XVuUC-00081o-6v for guile-devel@gnu.org; Sun, 21 Sep 2014 23:40:30 -0400 Original-Received: from world.peace.net ([96.39.62.75]:55196) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XVuUC-00080d-37 for guile-devel@gnu.org; Sun, 21 Sep 2014 23:40:24 -0400 Original-Received: from c-24-62-95-23.hsd1.ma.comcast.net ([24.62.95.23] helo=yeeloong.lan) by world.peace.net with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1XVuU0-0005aa-Ss; Sun, 21 Sep 2014 23:40:13 -0400 In-Reply-To: <87vbowa3g5.fsf@gmail.com> (David Michael's message of "Tue, 09 Sep 2014 17:28:42 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 96.39.62.75 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:17514 Archived-At: David Michael writes: > * guile-readline/ice-9/readline.scm (history-file): When the HOME > environment variable is unset, use the empty string in its place. FYI, this was discussed at , and we decided to have guile-readline put .guile_history in the current directory instead of the filesystem root when neither HOME nor GUILE_HISTORY are found in the environment. It's now pushed to stable-2.0, commit 3a3316e200ac49f0e8e9004c233747efd9f54a04. Thanks, Mark