From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Diogo F. S. Ramos" Newsgroups: gmane.lisp.guile.user Subject: Description of `program-sources' and accessors Date: Sat, 19 Apr 2014 07:07:06 -0300 Message-ID: <87oazx4oqd.fsf@nebulosa.milkyway> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1397902080 17389 80.91.229.3 (19 Apr 2014 10:08:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 19 Apr 2014 10:08:00 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sat Apr 19 12:07:53 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 1WbSBc-0001tU-2Q for guile-user@m.gmane.org; Sat, 19 Apr 2014 12:07:52 +0200 Original-Received: from localhost ([::1]:41464 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WbSBb-0003XJ-KT for guile-user@m.gmane.org; Sat, 19 Apr 2014 06:07:51 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50377) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WbSBO-0003XC-4B for guile-user@gnu.org; Sat, 19 Apr 2014 06:07:44 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WbSBH-0006h4-Vj for guile-user@gnu.org; Sat, 19 Apr 2014 06:07:38 -0400 Original-Received: from mx1.riseup.net ([198.252.153.129]:40332) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WbSBH-0006gR-Pr for guile-user@gnu.org; Sat, 19 Apr 2014 06:07:31 -0400 Original-Received: from fruiteater.riseup.net (fruiteater-pn.riseup.net [10.0.1.74]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "Gandi Standard SSL CA" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id D4AE54A7A0 for ; Sat, 19 Apr 2014 03:07:24 -0700 (PDT) Original-Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: dfsr@fruiteater.riseup.net) with ESMTPSA id 12C79F16 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-Virus-Scanned: clamav-milter 0.98.1 at mx1 X-Virus-Status: Clean X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 198.252.153.129 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:11209 Archived-At: Is there a place which describes the meaning of each of element of `program-sources' accessors? For example: (source:addr (program-sources every)) => (0 "srfi/srfi-1.scm" 810 . 0) What does each element of the improper list mean? Also for `source:file', `source:line' and `source:column'. The first two are also improper lists, but the last is a list of improper lists.