From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andy Wingo Newsgroups: gmane.lisp.guile.devel Subject: Re: Set width on ,bt Date: Thu, 27 Jan 2011 16:26:02 +0100 Message-ID: References: <181465.40403.qm@web37907.mail.mud.yahoo.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1296142586 5010 80.91.229.12 (27 Jan 2011 15:36:26 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 27 Jan 2011 15:36:26 +0000 (UTC) Cc: guile-devel To: Mike Gran Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Jan 27 16:36:20 2011 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PiTtU-0001nO-Cb for guile-devel@m.gmane.org; Thu, 27 Jan 2011 16:36:20 +0100 Original-Received: from localhost ([127.0.0.1]:47436 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PiTfa-0004aU-Sx for guile-devel@m.gmane.org; Thu, 27 Jan 2011 10:21:59 -0500 Original-Received: from [140.186.70.92] (port=45405 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PiTen-0004An-Nu for guile-devel@gnu.org; Thu, 27 Jan 2011 10:21:10 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PiTem-0001sv-BZ for guile-devel@gnu.org; Thu, 27 Jan 2011 10:21:09 -0500 Original-Received: from a-pb-sasl-sd.pobox.com ([64.74.157.62]:56519 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PiTem-0001se-7l for guile-devel@gnu.org; Thu, 27 Jan 2011 10:21:08 -0500 Original-Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-sd.pobox.com (Postfix) with ESMTP id 52C5C33E4; Thu, 27 Jan 2011 10:21:58 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=AGEG28mp00z45uAh5h6kd2Br4FQ=; b=YCD5+X FSxHc2z1az7ZG1aJDaOzYM036GVz1TCXZSWmQBsItG9DLvQoj2a58Pk1yzYkHNbA QSlrjtU6+aUrVXmU5OXPe1Jc3dlxSBF8m4ht+5Wmn0iA+j/A62PTOhV0m60AWs1K 6PSkSm8zOzIAj2dJKzzggt/C1MjLSLQID1fd0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=B5+aWnBFVfoqyR0b+x5RrMaM76+szw64 09/gH1ax7N8ADZ9kxxRUyN5+avfWYcCmxeCqLQnGNzwqXXjAqIpJ7UcKcUDI/NHx +KOEwgsX1yBD779zWpT3DjAm99Vd+6Ke2n4/C8e0u18YT8OZ+ZihJsXP48Qvg1KR F8iEvQQKas4= Original-Received: from a-pb-sasl-sd.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-sd.pobox.com (Postfix) with ESMTP id 3E78433E3; Thu, 27 Jan 2011 10:21:57 -0500 (EST) Original-Received: from unquote.localdomain (unknown [90.164.198.39]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-pb-sasl-sd.pobox.com (Postfix) with ESMTPSA id 9AFAB33E2; Thu, 27 Jan 2011 10:21:55 -0500 (EST) In-Reply-To: <181465.40403.qm@web37907.mail.mud.yahoo.com> (Mike Gran's message of "Wed, 22 Dec 2010 21:01:20 -0800 (PST)") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) X-Pobox-Relay-ID: 2DD66DEA-2A29-11E0-B69C-BC4EF3E828EC-02397024!a-pb-sasl-sd.pobox.com X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:11361 Archived-At: On Thu 23 Dec 2010 06:01, Mike Gran writes: > To avoid the truncated print on the ,backtrace, I find > myself often typing ",bt #:width 240". Can I alias > the REPL commands? Not currently, but patches accepted :) In this case though you might want a separate option to change the default width, for example `,option width 240' or something. Perhaps we should get the width from the console by default. You probably know most about this sort of thing tho... Andy -- http://wingolog.org/