From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9870 invoked by alias); 12 Apr 2014 18:46:25 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 9858 invoked by uid 89); 12 Apr 2014 18:46:24 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pb0-f47.google.com Received: from mail-pb0-f47.google.com (HELO mail-pb0-f47.google.com) (209.85.160.47) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sat, 12 Apr 2014 18:46:23 +0000 Received: by mail-pb0-f47.google.com with SMTP id up15so6696127pbc.34 for ; Sat, 12 Apr 2014 11:46:21 -0700 (PDT) X-Received: by 10.68.213.97 with SMTP id nr1mr34741231pbc.52.1397328381753; Sat, 12 Apr 2014 11:46:21 -0700 (PDT) Received: from seba.sebabeach.org.gmail.com (173-13-178-53-sfba.hfc.comcastbusiness.net. [173.13.178.53]) by mx.google.com with ESMTPSA id qh2sm54538015pab.13.2014.04.12.11.46.20 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 12 Apr 2014 11:46:21 -0700 (PDT) From: Doug Evans To: Andy Wingo Cc: gdb-patches@sourceware.org Subject: Re: [PATCH 5/9] Rename "gsmob" in Guile interface to "gdb object" References: <1397060028-18158-1-git-send-email-wingo@igalia.com> <1397060028-18158-6-git-send-email-wingo@igalia.com> Date: Sat, 12 Apr 2014 18:46:00 -0000 In-Reply-To: <1397060028-18158-6-git-send-email-wingo@igalia.com> (Andy Wingo's message of "Wed, 9 Apr 2014 18:13:44 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2014-04/txt/msg00239.txt.bz2 Andy Wingo writes: > diff --git a/gdb/doc/guile.texi b/gdb/doc/guile.texi > index 3f6580e..f7204e9 100644 > --- a/gdb/doc/guile.texi > +++ b/gdb/doc/guile.texi > @@ -331,46 +331,45 @@ This is the string passed to @code{--target} when @value{GDBN} was configured. > > @node GDB Scheme Data Types > @subsubsection GDB Scheme Data Types > -@cindex gdb smobs > +@cindex gdb objects > > -@value{GDBN} uses Guile's @dfn{smob} (small object) > -data type for all @value{GDBN} objects > -(@pxref{Defining New Types (Smobs),,, guile, GNU Guile Reference Manual}). > -The smobs that @value{GDBN} provides are called @dfn{gsmobs}. > +The values exposed by @value{GDBN} to Guile are known as > +@dfn{@value{GDBN} objects}. There are several kinds of @value{GDBN} > +object, and each is disjoint from all other types known to Guile. objects LGTM otherwise.