From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: more byte-code optimizations Date: Mon, 20 Sep 2004 11:18:00 -0400 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: References: <200409192252.49200.pogonyshev@gmx.net> Reply-To: rms@gnu.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1095693563 20051 80.91.229.6 (20 Sep 2004 15:19:23 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 20 Sep 2004 15:19:23 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Sep 20 17:19:07 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1C9PwZ-0004dx-00 for ; Mon, 20 Sep 2004 17:19:07 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C9Q2R-0004vX-P7 for ged-emacs-devel@m.gmane.org; Mon, 20 Sep 2004 11:25:11 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1C9Q2E-0004uX-36 for emacs-devel@gnu.org; Mon, 20 Sep 2004 11:24:58 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1C9Q2C-0004th-HQ for emacs-devel@gnu.org; Mon, 20 Sep 2004 11:24:57 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C9Q2C-0004td-DS for emacs-devel@gnu.org; Mon, 20 Sep 2004 11:24:56 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1C9Pvb-0001TM-1s for emacs-devel@gnu.org; Mon, 20 Sep 2004 11:18:07 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1C9PvU-0005aU-HY; Mon, 20 Sep 2004 11:18:02 -0400 Original-To: Paul Pogonyshev In-reply-to: <200409192252.49200.pogonyshev@gmx.net> (message from Paul Pogonyshev on Sun, 19 Sep 2004 22:52:49 -0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 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 Xref: main.gmane.org gmane.emacs.devel:27332 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:27332 + ;; Build double-linked list. The structure of each list link is + ;; like this: (value . (previous . next)) That comment isn't clear--could you make it explain what "value" refer to. Also, the variables should be upper case: + ;; like this: (VALUE . (PREVIOUS . NEXT))