comparison lispref/elisp.texi @ 63581:ff52793febfb

Add links to Rings and Byte Packing. Update version and copyright years.
author Richard M. Stallman <rms@gnu.org>
date Sat, 18 Jun 2005 13:47:15 +0000
parents e45713530dd2
children d117d2b963e1
comparison
equal deleted inserted replaced
63580:cdd23c548b35 63581:ff52793febfb
4 @settitle GNU Emacs Lisp Reference Manual 4 @settitle GNU Emacs Lisp Reference Manual
5 @c %**end of header 5 @c %**end of header
6 6
7 @c Version of the manual and of Emacs. 7 @c Version of the manual and of Emacs.
8 @c Please remember to update the edition number in README as well. 8 @c Please remember to update the edition number in README as well.
9 @set VERSION 2.9 9 @set VERSION 2.7
10 @set EMACSVER 22.0.50 10 @set EMACSVER 22.0.50
11 11
12 @dircategory Emacs 12 @dircategory Emacs
13 @direntry 13 @direntry
14 * Elisp: (elisp). The Emacs Lisp Reference Manual. 14 * Elisp: (elisp). The Emacs Lisp Reference Manual.
32 32
33 Published by the Free Software Foundation 33 Published by the Free Software Foundation
34 59 Temple Place, Suite 330 34 59 Temple Place, Suite 330
35 Boston, MA 02111-1307 USA 35 Boston, MA 02111-1307 USA
36 36
37 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2005,@* 37 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, @*
38 2000, 2002 Free Software Foundation, Inc. 38 2000, 2002, 2003, 2004, 2005, Free Software Foundation, Inc.
39 39
40 Permission is granted to copy, distribute and/or modify this document 40 Permission is granted to copy, distribute and/or modify this document
41 under the terms of the GNU Free Documentation License, Version 1.1 or 41 under the terms of the GNU Free Documentation License, Version 1.1 or
42 any later version published by the Free Software Foundation; with the 42 any later version published by the Free Software Foundation; with the
43 Invariant Sections being ``GNU General Public License'', with the Front-Cover texts being 43 Invariant Sections being ``GNU General Public License'', with the Front-Cover texts being
58 @author by Bil Lewis, Dan LaLiberte, Richard Stallman 58 @author by Bil Lewis, Dan LaLiberte, Richard Stallman
59 @author and the GNU Manual Group 59 @author and the GNU Manual Group
60 @page 60 @page
61 @vskip 0pt plus 1filll 61 @vskip 0pt plus 1filll
62 Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998,@* 62 Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998,@*
63 1999, 2000, 2002 Free Software Foundation, Inc. 63 1999, 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
64 64
65 @sp 2 65 @sp 2
66 Edition @value{VERSION} @* 66 Edition @value{VERSION} @*
67 Revised for Emacs Version @value{EMACSVER},@* 67 Revised for Emacs Version @value{EMACSVER},@*
68 January 2002.@* 68 January 2002.@*
286 * List Elements:: Extracting the pieces of a list. 286 * List Elements:: Extracting the pieces of a list.
287 * Building Lists:: Creating list structure. 287 * Building Lists:: Creating list structure.
288 * Modifying Lists:: Storing new pieces into an existing list. 288 * Modifying Lists:: Storing new pieces into an existing list.
289 * Sets And Lists:: A list can represent a finite mathematical set. 289 * Sets And Lists:: A list can represent a finite mathematical set.
290 * Association Lists:: A list can represent a finite relation or mapping. 290 * Association Lists:: A list can represent a finite relation or mapping.
291 * Rings:: Managing a fixed-size ring of objects.
291 292
292 Modifying Existing List Structure 293 Modifying Existing List Structure
293 294
294 * Setcar:: Replacing an element in a list. 295 * Setcar:: Replacing an element in a list.
295 * Setcdr:: Replacing part of the list backbone. 296 * Setcdr:: Replacing part of the list backbone.
981 * Network:: Opening network connections. 982 * Network:: Opening network connections.
982 * Network Servers:: Network servers let Emacs accept net connections. 983 * Network Servers:: Network servers let Emacs accept net connections.
983 * Datagrams:: UDP network connections. 984 * Datagrams:: UDP network connections.
984 * Low-Level Network:: Lower-level but more general function 985 * Low-Level Network:: Lower-level but more general function
985 to create connections and servers. 986 to create connections and servers.
987 * Byte Packing:: Using bindat to pack and unpack binary data.
986 988
987 Receiving Output from Processes 989 Receiving Output from Processes
988 990
989 * Process Buffers:: If no filter, output is put in a buffer. 991 * Process Buffers:: If no filter, output is put in a buffer.
990 * Filter Functions:: Filter functions accept output from the process. 992 * Filter Functions:: Filter functions accept output from the process.