From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Panicz Maciej Godek Newsgroups: gmane.lisp.guile.user Subject: Where is the backtrace? Date: Fri, 3 Jan 2014 03:30:04 +0100 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1388716208 26562 80.91.229.3 (3 Jan 2014 02:30:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 3 Jan 2014 02:30:08 +0000 (UTC) To: "guile-user@gnu.org" Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri Jan 03 03:30:15 2014 Return-path: Envelope-to: guile-user@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 1VyuWd-00023e-0q for guile-user@m.gmane.org; Fri, 03 Jan 2014 03:30:15 +0100 Original-Received: from localhost ([::1]:47930 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VyuWc-0001sT-Gw for guile-user@m.gmane.org; Thu, 02 Jan 2014 21:30:14 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:49211) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VyuWU-0001qJ-NJ for guile-user@gnu.org; Thu, 02 Jan 2014 21:30:07 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VyuWT-0002pv-PZ for guile-user@gnu.org; Thu, 02 Jan 2014 21:30:06 -0500 Original-Received: from mail-wg0-x231.google.com ([2a00:1450:400c:c00::231]:49607) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VyuWT-0002oZ-IO for guile-user@gnu.org; Thu, 02 Jan 2014 21:30:05 -0500 Original-Received: by mail-wg0-f49.google.com with SMTP id x12so12881538wgg.4 for ; Thu, 02 Jan 2014 18:30:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=aeQCeZ7qQDOeg9PUAAPY9+hVOcrOueUG+O+B5DbBC0I=; b=Lch+quHRNWFHgENOmt3HMuYp311euyPYHNURd8AWAYhFokdR5SfE5fYcJ5ZkYYfVFc moGRQUlCszKqFe43JVPDDoksJyvmznCWYegkz7+wE7mqHbh6bxBJ+RdiSUFspx8VmYMd CWf3zqcoTS5RVtoowCoQ3aT4PysiVWk90LrLJJcLKv+SvHLQnveT+Yg82G61SFSi0fW0 +fzGe6PWQz1wQBNNBADY9Q5KCeF6rVErgeYK2inKMPORjouzKstL23wozZLTo4Kj26qT r5WK3RZ/7aYTZBreWI1UgRyROMCp6bH4qAxEBMlDW+h4ykqFb/EKCkyYT/J1+mSH1mfI giiw== X-Received: by 10.180.12.146 with SMTP id y18mr27416wib.37.1388716204531; Thu, 02 Jan 2014 18:30:04 -0800 (PST) Original-Received: by 10.194.178.134 with HTTP; Thu, 2 Jan 2014 18:30:04 -0800 (PST) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c00::231 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:10956 Archived-At: > (define (f) (define (g) (define (h) ((lambda x (cdr x)))) (h)) (g)) > (f) :13:0: In procedure #:13:0 x>: :13:0: In procedure cdr: Wrong type argument in position 1 (expecting pair): () Entering a new prompt. Type `,bt' for a backtrace or `,q' to continue > ,bt In current input: 13:0 0 (#:13:0 x>) Why isn't the information about the subsequent procedures tracked? Do they all get inlined? regards, M.