From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Antipov Newsgroups: gmane.emacs.devel Subject: Re: EARRAYSIZE Date: Fri, 04 Apr 2014 12:06:59 +0400 Message-ID: <533E6823.1080605@yandex.ru> References: <83ob0i9pn9.fsf@gnu.org> <533DB7D9.5070407@dancol.org> <878urmfa3j.fsf@fencepost.gnu.org> <83ioqpa679.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1396598864 25323 80.91.229.3 (4 Apr 2014 08:07:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 4 Apr 2014 08:07:44 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii , David Kastrup Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 04 10:07:38 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 1WVz9z-0007xR-ND for ged-emacs-devel@m.gmane.org; Fri, 04 Apr 2014 10:07:35 +0200 Original-Received: from localhost ([::1]:48337 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WVz9z-0001AH-4b for ged-emacs-devel@m.gmane.org; Fri, 04 Apr 2014 04:07:35 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:55123) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WVz9p-0001A0-R7 for emacs-devel@gnu.org; Fri, 04 Apr 2014 04:07:32 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WVz9i-00024i-JA for emacs-devel@gnu.org; Fri, 04 Apr 2014 04:07:25 -0400 Original-Received: from forward7.mail.yandex.net ([77.88.61.37]:38783) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WVz9T-0001nS-FO; Fri, 04 Apr 2014 04:07:03 -0400 Original-Received: from smtp1h.mail.yandex.net (smtp1h.mail.yandex.net [84.201.187.144]) by forward7.mail.yandex.net (Yandex) with ESMTP id 39BF51C0C9E; Fri, 4 Apr 2014 12:07:01 +0400 (MSK) Original-Received: from smtp1h.mail.yandex.net (localhost [127.0.0.1]) by smtp1h.mail.yandex.net (Yandex) with ESMTP id 9EDB11340027; Fri, 4 Apr 2014 12:07:00 +0400 (MSK) Original-Received: from unknown (unknown [37.139.80.10]) by smtp1h.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id 5ixONQZaGj-6xxqS0eU; Fri, 4 Apr 2014 12:06:59 +0400 (using TLSv1 with cipher AES128-SHA (128/128 bits)) (Client certificate not present) X-Yandex-Uniq: 44ac016a-337b-4639-b8f5-31fce8688fc7 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1396598819; bh=YUcTD6cWytb98V+8agklpPAt1StKRy8BDOurizsu9KA=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=RlQDnqgAmDEYsCd9dp+nXrNIsd8HZVupQgTpMmkoDyyPSTKupYPYCHja14DGJYTI4 tOyc666Hkj2/I9NpszpHW65pD5MwtDZtUWvpvAMs5J4lX6wB/QrmJVkSxMDq2+OXce CRTHB2GHXJRS2DslYYTlpGsA2k2wb1BsvOHLxsyE= Authentication-Results: smtp1h.mail.yandex.net; dkim=pass header.i=@yandex.ru User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 In-Reply-To: <83ioqpa679.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] [fuzzy] X-Received-From: 77.88.61.37 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:171302 Archived-At: On 04/04/2014 11:45 AM, Eli Zaretskii wrote: > I suggested ALEN because we have AREF and ASIZE. Maybe AELTS or > ALENGTH would be better. IMO this will confuse the reader because AREF and ASIZE are for Lisp_Objects and not for C arrays. What about MS-style countof (http://msdn.microsoft.com/en-us/library/ms175773%28v=VS.100%29.aspx)? Dmitry