From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Daniel Hartwig Newsgroups: gmane.lisp.guile.devel Subject: Re: bug#13077: guile: add repl-option for customized print Date: Wed, 12 Dec 2012 13:00:33 +0800 Message-ID: References: <87hao21nte.fsf@gmail.com> <1354598358.25329.4.camel@Renee-desktop.suse> <1355285005.2835.14.camel@Renee-desktop.suse> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1355288450 30028 80.91.229.3 (12 Dec 2012 05:00:50 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 12 Dec 2012 05:00:50 +0000 (UTC) Cc: guile-devel@gnu.org To: Nala Ginrut Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Wed Dec 12 06:01:01 2012 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 1TieRF-0007WH-4v for guile-devel@m.gmane.org; Wed, 12 Dec 2012 06:00:57 +0100 Original-Received: from localhost ([::1]:45723 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TieR2-0005ew-GC for guile-devel@m.gmane.org; Wed, 12 Dec 2012 00:00:44 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:40130) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TieQv-0005er-Aw for guile-devel@gnu.org; Wed, 12 Dec 2012 00:00:42 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TieQt-0003b3-4w for guile-devel@gnu.org; Wed, 12 Dec 2012 00:00:37 -0500 Original-Received: from mail-wi0-f170.google.com ([209.85.212.170]:65193) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TieQs-0003ax-Tt for guile-devel@gnu.org; Wed, 12 Dec 2012 00:00:35 -0500 Original-Received: by mail-wi0-f170.google.com with SMTP id hq7so2598450wib.3 for ; Tue, 11 Dec 2012 21:00:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=pzudzIWtnI6H5wVdS0ixkUiCqeJpS81ibMi7xQ8gWew=; b=reuRGZ0bs7d+OHaADUdpmigB3k8TFp313rmmIIgkUazT2XLvBcsFhstmFsVmM/7O6L Gy8vmSxTdQ1U2VUQk8RVt+374yBNR5vA3UksKiNTKB2Gq6ShNgz0qhBzTk+/jk9FpoPE VponsfWujnjnF6Thr3pMrVPLCNMd9jrCwhVBxww9ZhALrngZ7gp9uM89BxFLXowDnzwa fLQC66oZ/Y2eYBDvxL2tuxnHwD+h7p8XDzqR0RpMeVwoVtgLB+Rx6+nw8vLWCaolOvML vgi+GaJn/Nv42K3tK5Teyb/Lba05gAIG78/N2rRojDxP9h7NpO/X4sWBxPk1sbcgrEPZ WcQQ== Original-Received: by 10.194.76.237 with SMTP id n13mr643295wjw.57.1355288433832; Tue, 11 Dec 2012 21:00:33 -0800 (PST) Original-Received: by 10.216.125.68 with HTTP; Tue, 11 Dec 2012 21:00:33 -0800 (PST) In-Reply-To: <1355285005.2835.14.camel@Renee-desktop.suse> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.212.170 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:15334 Archived-At: [No need to Cc the bug report] On 12 December 2012 12:03, Nala Ginrut wrote: > Seems (fluid-ref *repl-stack*) is not a pair/list when REPL is just > started? Correction: is not a pair/list when /guile/ is just started. The program, guile, is not a REPL, that is only an optional component of it. You can't set REPL options before there is a REPL. The rc file (.guile) is applicable to all of guile, and read during initialization which is before any REPL is created. Try repl-default-option-set!.