comparison lispref/elisp.texi @ 12067:73dc8205d259

*** empty log message ***
author Karl Heuer <kwzh@gnu.org>
date Mon, 05 Jun 1995 12:23:13 +0000
parents 2d4db32cccd5
children a6eb5f12b0f3
comparison
equal deleted inserted replaced
12066:b9b0b3f96dc2 12067:73dc8205d259
4 @smallbook 4 @smallbook
5 @settitle GNU Emacs Lisp Reference Manual 5 @settitle GNU Emacs Lisp Reference Manual
6 @c %**end of header 6 @c %**end of header
7 7
8 @ifinfo 8 @ifinfo
9 This version is the edition 2.3 of the GNU Emacs Lisp 9 This version is the edition 2.4 of the GNU Emacs Lisp
10 Reference Manual. It corresponds to Emacs Version 19.25. 10 Reference Manual. It corresponds to Emacs Version 19.29.
11 @c Please REMEMBER to update edition number in *four* places in this file 11 @c Please REMEMBER to update edition number in *four* places in this file
12 @c and also in *one* place in intro.texi 12 @c and also in *one* place in intro.texi
13 13
14 Published by the Free Software Foundation 14 Published by the Free Software Foundation
15 675 Massachusetts Avenue 15 675 Massachusetts Avenue
16 Cambridge, MA 02139 USA 16 Cambridge, MA 02139 USA
17 17
18 Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. 18 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
19 19
20 Permission is granted to make and distribute verbatim copies of this 20 Permission is granted to make and distribute verbatim copies of this
21 manual provided the copyright notice and this permission notice are 21 manual provided the copyright notice and this permission notice are
22 preserved on all copies. 22 preserved on all copies.
23 23
66 @title GNU Emacs Lisp Reference Manual 66 @title GNU Emacs Lisp Reference Manual
67 @subtitle GNU Emacs Version 19 67 @subtitle GNU Emacs Version 19
68 @subtitle for Unix Users 68 @subtitle for Unix Users
69 @c The edition number appears in several places in this file 69 @c The edition number appears in several places in this file
70 @c and also in the file intro.texi. 70 @c and also in the file intro.texi.
71 @subtitle Second Edition, June 1993 71 @subtitle Revision 2.4, June 1995
72 @subtitle Revision 2.3, June 1994
73 72
74 @author by Bil Lewis, Dan LaLiberte, Richard Stallman 73 @author by Bil Lewis, Dan LaLiberte, Richard Stallman
75 @author and the GNU Manual Group 74 @author and the GNU Manual Group
76 @page 75 @page
77 @vskip 0pt plus 1filll 76 @vskip 0pt plus 1filll
78 Copyright @copyright{} 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. 77 Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
79 78
80 @sp 2 79 @sp 2
81 Edition 2.3 @* 80 Edition 2.4 @*
82 Revised for Emacs Version 19.25,@* 81 Revised for Emacs Version 19.29,@*
83 June, 1994.@* 82 June, 1995.@*
84 @sp 2 83 @sp 2
85 ISBN 1-882114-40-X 84 ISBN 1-882114-71-X
86 85
87 @sp 2 86 @sp 2
88 Published by the Free Software Foundation @* 87 Published by the Free Software Foundation @*
89 675 Massachusetts Avenue @* 88 675 Massachusetts Avenue @*
90 Cambridge, MA 02139 USA 89 Cambridge, MA 02139 USA
111 @page 110 @page
112 111
113 @node Top, Copying, (dir), (dir) 112 @node Top, Copying, (dir), (dir)
114 113
115 @ifinfo 114 @ifinfo
116 This Info file contains edition 2.3 of the GNU Emacs Lisp 115 This Info file contains edition 2.4 of the GNU Emacs Lisp
117 Reference Manual, corresponding to GNU Emacs version 19.25. 116 Reference Manual, corresponding to GNU Emacs version 19.29.
118 @end ifinfo 117 @end ifinfo
119 118
120 @menu 119 @menu
121 * Copying:: Conditions for copying and changing GNU Emacs. 120 * Copying:: Conditions for copying and changing GNU Emacs.
122 * Introduction:: Introduction and conventions used. 121 * Introduction:: Introduction and conventions used.
266 * Predicates on Numbers:: Testing for numbers. 265 * Predicates on Numbers:: Testing for numbers.
267 * Comparison of Numbers:: Equality and inequality predicates. 266 * Comparison of Numbers:: Equality and inequality predicates.
268 * Arithmetic Operations:: How to add, subtract, multiply and divide. 267 * Arithmetic Operations:: How to add, subtract, multiply and divide.
269 * Bitwise Operations:: Logical and, or, not, shifting. 268 * Bitwise Operations:: Logical and, or, not, shifting.
270 * Numeric Conversions:: Converting float to integer and vice versa. 269 * Numeric Conversions:: Converting float to integer and vice versa.
271 * Transcendental Functions:: Trig, exponential and logarithmic functions. 270 * Math Functions:: Trig, exponential and logarithmic functions.
272 * Random Numbers:: Obtaining random integers, predictable or not. 271 * Random Numbers:: Obtaining random integers, predictable or not.
273 272
274 Strings and Characters 273 Strings and Characters
275 274
276 * String Basics:: Basic properties of strings and characters. 275 * String Basics:: Basic properties of strings and characters.
705 The Kill Ring 704 The Kill Ring
706 705
707 * Kill Ring Concepts:: What text looks like in the kill ring. 706 * Kill Ring Concepts:: What text looks like in the kill ring.
708 * Kill Functions:: Functions that kill text. 707 * Kill Functions:: Functions that kill text.
709 * Yank Commands:: Commands that access the kill ring. 708 * Yank Commands:: Commands that access the kill ring.
710 * Low Level Kill Ring:: Functions and variables for kill ring access. 709 * Low-Level Kill Ring:: Functions and variables for kill ring access.
711 * Internals of Kill Ring:: Variables that hold kill-ring data. 710 * Internals of Kill Ring:: Variables that hold kill-ring data.
712 711
713 Indentation 712 Indentation
714 713
715 * Primitive Indent:: Functions used to count and insert indentation. 714 * Primitive Indent:: Functions used to count and insert indentation.