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: Mon, 9 Feb 2015 10:58:55 +0100 Message-ID: References: <87y4t9m76w.fsf@lifelogs.com> <85k31coixa.fsf@stephe-leake.org> <85oapy5kt6.fsf@stephe-leake.org> <83y4oiiw81.fsf@gnu.org> <838ugdf251.fsf@gnu.org> <54D80098.3020209@cs.ucla.edu> <54D85304.1030600@cs.ucla.edu> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1423475942 19371 80.91.229.3 (9 Feb 2015 09:59:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 9 Feb 2015 09:59:02 +0000 (UTC) Cc: Eli Zaretskii , Stephen Leake , Stefan Monnier , Emacs development discussions To: Paul Eggert Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Feb 09 10:59:01 2015 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 1YKl7M-0001Kd-Kh for ged-emacs-devel@m.gmane.org; Mon, 09 Feb 2015 10:59:00 +0100 Original-Received: from localhost ([::1]:59788 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKl7M-00030Z-5S for ged-emacs-devel@m.gmane.org; Mon, 09 Feb 2015 04:59:00 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40458) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKl7J-00030U-S1 for emacs-devel@gnu.org; Mon, 09 Feb 2015 04:58:58 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YKl7J-0006ta-39 for emacs-devel@gnu.org; Mon, 09 Feb 2015 04:58:57 -0500 Original-Received: from mail-ig0-x22f.google.com ([2607:f8b0:4001:c05::22f]:60741) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKl7I-0006t6-0c; Mon, 09 Feb 2015 04:58:56 -0500 Original-Received: by mail-ig0-f175.google.com with SMTP id hn18so15241799igb.2; Mon, 09 Feb 2015 01:58:55 -0800 (PST) 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=wwi+Dxz/p/phrA3rxilaP97FqELPTRhlahxjK4biWLw=; b=ZU5HtnrFoNi9VYxvcSGEhFQ/zNA9Ztj1Zb1IK5E5KTnKWZ8O5TRcCXem6q+clAcj4v Ezc9y+xCUEp0IkmEO0smib0GgoRvyfhvwXT7yrHR1QaCniXTA6azFOdZNPRBJJkvD52r Y0r+A4/hEegTJjx2otp6ILSrK0FpoBUW11oUEu4erYqmC7fp2X/+urHOJNH/sBXG15bD 0lbnN61JHG73gmKC5mDCPKT94Bo4HeGr/IZPI0D2ycosQbFPwWX33SeDdCl+ffrVunvH XZuAcvSpXIPoLlkuqWsqQ9mBbw5+PAVLzNa3/ln4yeCki5Tg8wQmGoPms9Q4Rq5faG+Y +7qw== X-Received: by 10.50.66.198 with SMTP id h6mr16105902igt.22.1423475935361; Mon, 09 Feb 2015 01:58:55 -0800 (PST) Original-Received: by 10.36.19.71 with HTTP; Mon, 9 Feb 2015 01:58:55 -0800 (PST) In-Reply-To: <54D85304.1030600@cs.ucla.edu> X-Google-Sender-Auth: 33NMFwC1kI9tMtbPMWbibazfXdg X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4001:c05::22f 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:182671 Archived-At: On Mon, Feb 9, 2015 at 7:26 AM, Paul Eggert wrote: > One other thing: I don't see the point of prefixing global module symbols > with 'MQ' as opposed to 'Q'. Users of these symbols shouldn't care whether > a module defined them, or the core interpreter defined them. Global vars in core end up as macros. I was using Qc in the opaque module but it broke recently when core defined it too. Since it's hard to keep up with what core defines, adding a prefix prevents the clash.