From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 96282 invoked by alias); 6 Sep 2017 16:54:33 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 96272 invoked by uid 89); 6 Sep 2017 16:54:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=reserved X-HELO: mail-qk0-f177.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=SMEyNH1LYnxmVkF4RiRwq1Gz8QGU65j7Uo9PHFs9mS8=; b=fZuPHHpn9xFGBiCr9CoVNYOEtslpsRcRdui+nFUc/xAhdrv2Y2MpN+ckE/UxordWcK mFdywlwLPgRpiTUxDjvePuRCn2zKfE/IzrV9vp0wp4CgyQ+jysl4MDSkbUP0/BDntrpc zgglUBUuLndxKUeCm3jevvEqAiov9HRW75/wAlHjLGzT4I0pqAnQ/2JDy41hXDwxp+Ai XTlzGW+GDmZc33HBevjdD08LS7kCKmdhjAhptYkIjylmekfFswzDDz4VwQSH8NC+Gnzo zhQYvrJ20lR6oe++rwVecTnTEINhb66kYnIgujbfsJaIMG4KpoJPMM8ALqkT11ppcJ3K Ba3w== X-Gm-Message-State: AHPjjUidFyNrsbxw3StVEz622/umH19LJflKih9lyDq9xytTqajWbfSq 6CZ7Aqrj+IuzdDQr X-Google-Smtp-Source: ADKCNb4w2uLEAwUDrUmiV7s7Jx33FgiTl9ghcbEOWG+jQQblTfIT1/ikBOG5l2Fmlf7zrYu6yvtgYQ== X-Received: by 10.55.24.161 with SMTP id 33mr4065811qky.220.1504716870246; Wed, 06 Sep 2017 09:54:30 -0700 (PDT) Subject: Re: [PATCH 8/9] posix: Use enum for __glob_pattern_type result To: Paul Eggert , libc-alpha@sourceware.org, Gnulib bugs References: <1504643122-14874-1-git-send-email-adhemerval.zanella@linaro.org> <1504643122-14874-9-git-send-email-adhemerval.zanella@linaro.org> <018ac06d-cb0a-edb9-7de5-560f614fda80@cs.ucla.edu> From: Adhemerval Zanella Message-ID: Date: Wed, 06 Sep 2017 16:54:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2017-09/txt/msg00269.txt.bz2 On 06/09/2017 13:18, Paul Eggert wrote: > Adhemerval Zanella wrote: >> My understanding was double underscore identifiers are reserved for implementation >> (C99 7.1.3 Reserved identifiers). > > Yes, and that's the point. When this code is used as part of Gnulib, it is used within an application, so any identifiers it uses that start with __ might collide with the implementation, which means it's safer to avoid them when it's easy, as is the case here. Right, I got your point.