From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?UTF-8?Q?Aur=C3=A9lien_Aptel?= Newsgroups: gmane.emacs.devel Subject: Re: Dynamic loading progress Date: Fri, 11 Jul 2014 11:01:27 +0200 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1405069306 14210 80.91.229.3 (11 Jul 2014 09:01:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 11 Jul 2014 09:01:46 +0000 (UTC) Cc: Emacs development discussions To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 11 11:01:37 2014 Return-path: Envelope-to: ged-emacs-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 1X5Wi1-0001P3-6D for ged-emacs-devel@m.gmane.org; Fri, 11 Jul 2014 11:01:37 +0200 Original-Received: from localhost ([::1]:43162 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5Wi0-00037Z-LL for ged-emacs-devel@m.gmane.org; Fri, 11 Jul 2014 05:01:36 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33852) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5Whu-00034B-8j for emacs-devel@gnu.org; Fri, 11 Jul 2014 05:01:31 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X5Wht-00021L-DT for emacs-devel@gnu.org; Fri, 11 Jul 2014 05:01:30 -0400 Original-Received: from mail-la0-x234.google.com ([2a00:1450:4010:c03::234]:48379) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X5Wht-00020L-6e for emacs-devel@gnu.org; Fri, 11 Jul 2014 05:01:29 -0400 Original-Received: by mail-la0-f52.google.com with SMTP id gl10so613667lab.25 for ; Fri, 11 Jul 2014 02:01:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=tR7+WhQWGwnJAwMUPudH6KghWJ+m1vM7jsZomrH9ow8=; b=MTYgijaW2J485xTiMvJ/nn0j5aGPwbwuUqz6VrYYpaloMuvITnM+wHnFLXpmrTyhmN wJJy84dOtCVJh6aU7xOVMDyQwfKjLjcElBK5ZPVRWLsou1dKz5YOlHpGIV75VUcphJUM OtqAEaACLFIY4OCVKphqcTXELwYudKNR+YlyZBjf4P0sZoFZZu2CQmwnLknO8gHvmbpG GWwQ/Q+0T9cZchjTeiXHr/QuGs8Rt6Eci/+DgAQMSDbaSzTxd0mScRX2nOwH6prWDfgc VzVa23v09ZSaA3d5LGePCpLe1Ybrcwlxm0e4a4ymY8BWpQvX1Ok1FHU+PAYq1smsEYZf 9f0g== X-Received: by 10.112.170.167 with SMTP id an7mr2557526lbc.41.1405069287347; Fri, 11 Jul 2014 02:01:27 -0700 (PDT) Original-Received: by 10.114.77.202 with HTTP; Fri, 11 Jul 2014 02:01:27 -0700 (PDT) In-Reply-To: X-Google-Sender-Auth: swY0B9oJ9M_z7oWYvLHrBGx3M4M X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::234 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:172968 Archived-At: Sorry, I still don't get it. On Thu, Jul 10, 2014 at 8:04 PM, Stefan Monnier wrote: > The issue is that when we get a vectorlike object, the first thing we > want to do is to check the VECTOR_MARKED_P and stop right there if it's > already marked. You're talking about the marking pass here, right? in mark_object (): case Lisp_Vectorlike: { register struct Lisp_Vector *ptr = XVECTOR (obj); register ptrdiff_t pvectype; if (VECTOR_MARKED_P (ptr)) break; If it's already marked, then the doc field is already marked too so breaking here is correct.