aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-28 14:52:37 +0000
committerRichard M. Stallman1994-05-28 14:52:37 +0000
commitec221d13b75a2fedd86911ab92e105262ac098ee (patch)
treef8a7f2f95d3772348bc80ec531940646d8e594b4
parenta6b7947839908b6b55f1e83caec1f6450afc1e13 (diff)
downloademacs-ec221d13b75a2fedd86911ab92e105262ac098ee.tar.gz
emacs-ec221d13b75a2fedd86911ab92e105262ac098ee.zip
entered into RCS
-rw-r--r--lispref/anti.texi10
-rw-r--r--lispref/book-spine.texinfo2
-rw-r--r--lispref/control.texi4
-rw-r--r--lispref/edebug.texi3
-rw-r--r--lispref/elisp-covers.texi36
-rw-r--r--lispref/elisp.texi12
-rw-r--r--lispref/front-cover-1.texi4
-rw-r--r--lispref/lists.texi4
-rw-r--r--lispref/macros.texi6
-rw-r--r--lispref/markers.texi2
-rw-r--r--lispref/objects.texi2
-rw-r--r--lispref/positions.texi4
-rw-r--r--lispref/symbols.texi2
13 files changed, 47 insertions, 44 deletions
diff --git a/lispref/anti.texi b/lispref/anti.texi
index 5f6b9286bfc..ca94cf3d196 100644
--- a/lispref/anti.texi
+++ b/lispref/anti.texi
@@ -107,7 +107,7 @@ The functions @code{float}, @code{truncate}, @code{floor}, @code{ceil},
107The @code{format} function no longer handles the specifications 107The @code{format} function no longer handles the specifications
108@samp{%e}, @samp{%f} and @samp{%g} for printing floating point numbers; 108@samp{%e}, @samp{%f} and @samp{%g} for printing floating point numbers;
109likewise for @code{message}. 109likewise for @code{message}.
110@end bullet 110@end itemize
111 111
112@section Changes in Basic Editing Functions 112@section Changes in Basic Editing Functions
113 113
@@ -199,7 +199,7 @@ friendly to process the files in any haphazard order.
199@item 199@item
200We eliminated the variables @code{write-contents-hooks} and 200We eliminated the variables @code{write-contents-hooks} and
201@code{local-write-file-hooks}. 201@code{local-write-file-hooks}.
202@end bullet 202@end itemize
203 203
204@section Making Certain File Names ``Magic'' 204@section Making Certain File Names ``Magic''
205 205
@@ -238,9 +238,11 @@ are: @code{x-display-screens}, @code{x-server-version},
238@code{x-display-visual-class}, @code{x-display-color-p}, and 238@code{x-display-visual-class}, @code{x-display-color-p}, and
239@code{x-display-color-cells}. 239@code{x-display-color-cells}.
240 240
241@item
241Additionally, we removed the variable @code{x-no-window-manager} and the 242Additionally, we removed the variable @code{x-no-window-manager} and the
242functions @code{x-synchronize} and @code{x-get-resource}. 243functions @code{x-synchronize} and @code{x-get-resource}.
243 244
245@item
244We didn't abolish @code{x-display-color-p}, but we renamed it to 246We didn't abolish @code{x-display-color-p}, but we renamed it to
245@code{x-color-display-p}. We did abolish @code{x-color-defined-p}. 247@code{x-color-display-p}. We did abolish @code{x-color-defined-p}.
246 248
@@ -383,7 +385,7 @@ with a keyboard was too confusing for too many users.
383@item 385@item
384Emacs 18 has no menu bars. All functions and variables related to the 386Emacs 18 has no menu bars. All functions and variables related to the
385menu bar have been eliminated. 387menu bar have been eliminated.
386@end bullet 388@end itemize
387 389
388@section Changes in Minibuffer Features 390@section Changes in Minibuffer Features
389 391
@@ -401,7 +403,7 @@ minibuffer input functions can no longer be a cons cell
401@item 403@item
402In the function @code{read-no-blanks-input}, the @var{initial} argument 404In the function @code{read-no-blanks-input}, the @var{initial} argument
403is no longer optional. 405is no longer optional.
404@end bullet 406@end itemize
405 407
406@section New Features for Defining Commands 408@section New Features for Defining Commands
407 409
diff --git a/lispref/book-spine.texinfo b/lispref/book-spine.texinfo
index 92b224eb833..8633d477aca 100644
--- a/lispref/book-spine.texinfo
+++ b/lispref/book-spine.texinfo
@@ -11,7 +11,7 @@
11@center @titlefont{GNU Emacs Lisp Reference Manual} 11@center @titlefont{GNU Emacs Lisp Reference Manual}
12@sp 5 12@sp 5
13@center GNU 13@center GNU
14@center Emacs Version 18 14@center Emacs Version 19.25
15@center for Unix Users 15@center for Unix Users
16@sp 5 16@sp 5
17 17
diff --git a/lispref/control.texi b/lispref/control.texi
index 60fe2d56117..aea1c535588 100644
--- a/lispref/control.texi
+++ b/lispref/control.texi
@@ -1133,7 +1133,7 @@ but at least it is very unlikely.
1133to kill a temporary buffer. In this example, the value returned by 1133to kill a temporary buffer. In this example, the value returned by
1134@code{unwind-protect} is used. 1134@code{unwind-protect} is used.
1135 1135
1136@example 1136@smallexample
1137(defun shell-command-string (cmd) 1137(defun shell-command-string (cmd)
1138 "Return the output of the shell command CMD, as a string." 1138 "Return the output of the shell command CMD, as a string."
1139 (save-excursion 1139 (save-excursion
@@ -1142,4 +1142,4 @@ to kill a temporary buffer. In this example, the value returned by
1142 (unwind-protect 1142 (unwind-protect
1143 (buffer-string) 1143 (buffer-string)
1144 (kill-buffer (current-buffer))))) 1144 (kill-buffer (current-buffer)))))
1145@end example 1145@end smallexample
diff --git a/lispref/edebug.texi b/lispref/edebug.texi
index 991ea0a5391..f32b516199e 100644
--- a/lispref/edebug.texi
+++ b/lispref/edebug.texi
@@ -1069,8 +1069,7 @@ by an alternative, equivalent specification.
1069Here is a table of the possibilities for @var{specification} and how each 1069Here is a table of the possibilities for @var{specification} and how each
1070directs processing of arguments. 1070directs processing of arguments.
1071 1071
1072@table @bullet 1072@table @asis
1073
1074@item @code{t} 1073@item @code{t}
1075All arguments are instrumented for evaluation. 1074All arguments are instrumented for evaluation.
1076 1075
diff --git a/lispref/elisp-covers.texi b/lispref/elisp-covers.texi
index fa89c3d233e..aa9d23b8444 100644
--- a/lispref/elisp-covers.texi
+++ b/lispref/elisp-covers.texi
@@ -18,9 +18,9 @@
18@sp 1 18@sp 1
19@center @titlefont{Manual} 19@center @titlefont{Manual}
20@sp 2 20@sp 2
21@center GNU Emacs Version 18 21@center GNU Emacs Version 19
22@center for Unix Users 22@center for Unix Users
23@center Edition 1.05, April 1992 23@center Edition 2.3, June 1994
24@sp 2 24@sp 2
25@center @titlefont{Volume 1} 25@center @titlefont{Volume 1}
26@sp 2 26@sp 2
@@ -41,9 +41,9 @@
41@sp 1 41@sp 1
42@center @titlefont{Manual} 42@center @titlefont{Manual}
43@sp 2 43@sp 2
44@center GNU Emacs Version 18 44@center GNU Emacs Version 19
45@center for Unix Users 45@center for Unix Users
46@center Edition 1.05, April 1992 46@center Edition 2.3, June 1994
47@sp 2 47@sp 2
48@center @titlefont{Volume 2} 48@center @titlefont{Volume 2}
49@sp 2 49@sp 2
@@ -72,9 +72,9 @@
72@sp 1 72@sp 1
73@center @titlefont{Manual} 73@center @titlefont{Manual}
74@sp 2 74@sp 2
75@center GNU Emacs Version 18 75@center GNU Emacs Version 19
76@center for Unix Users 76@center for Unix Users
77@center Edition 1.05, April 1992 77@center Edition 2.3, June 1994
78@sp 2 78@sp 2
79@center @titlefont{Volume 1} 79@center @titlefont{Volume 1}
80@sp 2 80@sp 2
@@ -106,9 +106,9 @@
106@end tex 106@end tex
107 107
108@sp 2 108@sp 2
109@center GNU Emacs Version 18 109@center GNU Emacs Version 19
110@center for Unix Users 110@center for Unix Users
111@center Edition 1.05, April 1992 111@center Edition 2.3, June 1994
112@sp 2 112@sp 2
113@center @titlefont{Volume 1} 113@center @titlefont{Volume 1}
114@sp 2 114@sp 2
@@ -137,9 +137,9 @@
137@sp 1 137@sp 1
138@center @titlefont{Manual} 138@center @titlefont{Manual}
139@sp 2 139@sp 2
140@center GNU Emacs Version 18 140@center GNU Emacs Version 19
141@center for Unix Users 141@center for Unix Users
142@center Edition 1.05, April 1992 142@center Edition 2.3, June 1994
143@sp 2 143@sp 2
144@center @titlefont{Volume 1} 144@center @titlefont{Volume 1}
145@sp 2 145@sp 2
@@ -167,9 +167,9 @@
167@sp 1 167@sp 1
168@center @titlefont{Manual} 168@center @titlefont{Manual}
169@sp 2 169@sp 2
170@center GNU Emacs Version 18 170@center GNU Emacs Version 19
171@center for Unix Users 171@center for Unix Users
172@center Edition 1.05, April 1992 172@center Edition 2.3, June 1994
173@sp 2 173@sp 2
174@center @titlefont{Volume 2} 174@center @titlefont{Volume 2}
175@sp 2 175@sp 2
@@ -197,9 +197,9 @@
197@sp 1 197@sp 1
198@center @titlefont{Manual} 198@center @titlefont{Manual}
199@sp 2 199@sp 2
200@center GNU Emacs Version 18 200@center GNU Emacs Version 19
201@center for Unix Users 201@center for Unix Users
202@center Edition 1.05, April 1992 202@center Edition 2.3, June 1994
203@sp 2 203@sp 2
204@center @titlefont{Volume 2} 204@center @titlefont{Volume 2}
205@sp 2 205@sp 2
@@ -212,9 +212,9 @@
212 212
213@w{@titlefont{The GNU Emacs Lisp Reference Manual --- Vol. 1}} 213@w{@titlefont{The GNU Emacs Lisp Reference Manual --- Vol. 1}}
214@sp 4 214@sp 4
215@center GNU Emacs Version 18 215@center GNU Emacs Version 19
216@center for Unix Users 216@center for Unix Users
217@center Edition 1.05, April 1992 217@center Edition 2.3, June 1994
218@sp 4 218@sp 4
219@center by Bil Lewis, Dan LaLiberte, 219@center by Bil Lewis, Dan LaLiberte,
220@center and the GNU Manual Group 220@center and the GNU Manual Group
@@ -231,9 +231,9 @@
231 231
232@w{@titlefont{The GNU Emacs Lisp Reference Manual --- Vol. 2}} 232@w{@titlefont{The GNU Emacs Lisp Reference Manual --- Vol. 2}}
233@sp 4 233@sp 4
234@center GNU Emacs Version 18 234@center GNU Emacs Version 19
235@center for Unix Users 235@center for Unix Users
236@center Edition 1.05, April 1992 236@center Edition 2.3, June 1994
237@sp 4 237@sp 4
238@center by Bil Lewis, Dan LaLiberte, 238@center by Bil Lewis, Dan LaLiberte,
239@center and the GNU Manual Group 239@center and the GNU Manual Group
diff --git a/lispref/elisp.texi b/lispref/elisp.texi
index d9984ebfcc2..ce4b7d542c2 100644
--- a/lispref/elisp.texi
+++ b/lispref/elisp.texi
@@ -7,7 +7,7 @@
7 7
8@ifinfo 8@ifinfo
9This version is the edition 2.3 of the GNU Emacs Lisp 9This version is the edition 2.3 of the GNU Emacs Lisp
10Reference Manual. It corresponds to Emacs Version 19.23. 10Reference Manual. It corresponds to Emacs Version 19.25.
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
@@ -69,7 +69,7 @@ instead of in the original English.
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 Second Edition, June 1993
72@subtitle Revision 2.3, May 1994 72@subtitle Revision 2.3, June 1994
73 73
74@author by Bil Lewis, Dan LaLiberte, Richard Stallman 74@author by Bil Lewis, Dan LaLiberte, Richard Stallman
75@author and the GNU Manual Group 75@author and the GNU Manual Group
@@ -78,9 +78,9 @@ instead of in the original English.
78Copyright @copyright{} 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. 78Copyright @copyright{} 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
79 79
80@sp 2 80@sp 2
81Second Edition @* 81Edition 2.3 @*
82Revised for Emacs Version 19.23,@* 82Revised for Emacs Version 19.25,@*
83May 1994.@* 83June, 1994.@*
84@sp 2 84@sp 2
85ISBN 1-882114-40-X 85ISBN 1-882114-40-X
86 86
@@ -114,7 +114,7 @@ Cover art by Etienne Suvasa.
114 114
115@ifinfo 115@ifinfo
116This Info file contains edition 2.3 of the GNU Emacs Lisp 116This Info file contains edition 2.3 of the GNU Emacs Lisp
117Reference Manual, corresponding to GNU Emacs version 19.23. 117Reference Manual, corresponding to GNU Emacs version 19.25.
118@end ifinfo 118@end ifinfo
119 119
120@menu 120@menu
diff --git a/lispref/front-cover-1.texi b/lispref/front-cover-1.texi
index 980d3336e1c..cde9f952e9a 100644
--- a/lispref/front-cover-1.texi
+++ b/lispref/front-cover-1.texi
@@ -20,7 +20,7 @@
20@sp 2 20@sp 2
21@center GNU Emacs Version 19 21@center GNU Emacs Version 19
22@center for Unix Users 22@center for Unix Users
23@center Second Edition, June 1993 23@center Edition 2.3, June 1994
24@sp 2 24@sp 2
25@center @titlefont{Volume 1} 25@center @titlefont{Volume 1}
26@sp 2 26@sp 2
@@ -41,7 +41,7 @@
41@sp 2 41@sp 2
42@center GNU Emacs Version 19 42@center GNU Emacs Version 19
43@center for Unix Users 43@center for Unix Users
44@center Second Edition, June 1993 44@center Edition 2.3, June 1994
45@sp 2 45@sp 2
46@center @titlefont{Volume 2} 46@center @titlefont{Volume 2}
47@sp 2 47@sp 2
diff --git a/lispref/lists.texi b/lispref/lists.texi
index 7f0fc818ce2..0eb4a290f43 100644
--- a/lispref/lists.texi
+++ b/lispref/lists.texi
@@ -211,7 +211,7 @@ considered a list and @code{not} when it is considered a truth value
211@end example 211@end example
212@end defun 212@end defun
213 213
214@need 1000 214@need 2000
215 215
216@node List Elements 216@node List Elements
217@section Accessing Elements of Lists 217@section Accessing Elements of Lists
@@ -1384,6 +1384,7 @@ the new alist without changing the old one.
1384(setq needles-per-cluster 1384(setq needles-per-cluster
1385 '((2 . ("Austrian Pine" "Red Pine")) 1385 '((2 . ("Austrian Pine" "Red Pine"))
1386 (3 . ("Pitch Pine")) 1386 (3 . ("Pitch Pine"))
1387@end group
1387 (5 . ("White Pine")))) 1388 (5 . ("White Pine"))))
1388@result{} 1389@result{}
1389((2 "Austrian Pine" "Red Pine") 1390((2 "Austrian Pine" "Red Pine")
@@ -1404,6 +1405,7 @@ the new alist without changing the old one.
1404 @result{} nil 1405 @result{} nil
1405(cdr (car (cdr needles-per-cluster))) 1406(cdr (car (cdr needles-per-cluster)))
1406 @result{} ("Pitch Pine") 1407 @result{} ("Pitch Pine")
1408@group
1407(eq (cdr (car (cdr needles-per-cluster))) 1409(eq (cdr (car (cdr needles-per-cluster)))
1408 (cdr (car (cdr copy)))) 1410 (cdr (car (cdr copy))))
1409 @result{} t 1411 @result{} t
diff --git a/lispref/macros.texi b/lispref/macros.texi
index 13e85568eaf..71dc82f9e54 100644
--- a/lispref/macros.texi
+++ b/lispref/macros.texi
@@ -320,7 +320,7 @@ should not be used:
320 320
321@cindex CL note---@samp{,}, @samp{,@@} as functions 321@cindex CL note---@samp{,}, @samp{,@@} as functions
322@quotation 322@quotation
323@b{Common Lisp note:} in Common Lisp, @samp{,} and @samp{,@@} are 323@b{Common Lisp note:} In Common Lisp, @samp{,} and @samp{,@@} are
324implemented as reader macros, so they do not require parentheses. In 324implemented as reader macros, so they do not require parentheses. In
325Emacs Lisp they use function call syntax because reader macros are not 325Emacs Lisp they use function call syntax because reader macros are not
326supported (for simplicity's sake). 326supported (for simplicity's sake).
@@ -474,7 +474,7 @@ number of times:
474local variable named @code{max} which the user does not expect. This 474local variable named @code{max} which the user does not expect. This
475causes trouble in examples such as the following: 475causes trouble in examples such as the following:
476 476
477@example 477@smallexample
478@group 478@group
479(let ((max 0)) 479(let ((max 0))
480 (for x from 0 to 10 do 480 (for x from 0 to 10 do
@@ -482,7 +482,7 @@ causes trouble in examples such as the following:
482 (if (< max this) 482 (if (< max this)
483 (setq max this))))) 483 (setq max this)))))
484@end group 484@end group
485@end example 485@end smallexample
486 486
487@noindent 487@noindent
488The references to @code{max} inside the body of the @code{for}, which 488The references to @code{max} inside the body of the @code{for}, which
diff --git a/lispref/markers.texi b/lispref/markers.texi
index ae2deeb9b4d..ef991890a18 100644
--- a/lispref/markers.texi
+++ b/lispref/markers.texi
@@ -441,7 +441,7 @@ This function is @emph{only} intended for interactive use.
441This function sets the mark to @var{position}, and activates the mark. 441This function sets the mark to @var{position}, and activates the mark.
442The old value of the mark is @emph{not} pushed onto the mark ring. 442The old value of the mark is @emph{not} pushed onto the mark ring.
443 443
444@strong{Please note:} use this function only if you want the user to 444@strong{Please note:} Use this function only if you want the user to
445see that the mark has moved, and you want the previous mark position to 445see that the mark has moved, and you want the previous mark position to
446be lost. Normally, when a new mark is set, the old one should go on the 446be lost. Normally, when a new mark is set, the old one should go on the
447@code{mark-ring}. For this reason, most applications should use 447@code{mark-ring}. For this reason, most applications should use
diff --git a/lispref/objects.texi b/lispref/objects.texi
index ede4d2cb554..9f5a82ee393 100644
--- a/lispref/objects.texi
+++ b/lispref/objects.texi
@@ -422,7 +422,7 @@ do such a thing.
422 422
423@cindex CL note---case of letters 423@cindex CL note---case of letters
424@quotation 424@quotation
425@b{Common Lisp note:} in Common Lisp, lower case letters are always 425@b{Common Lisp note:} In Common Lisp, lower case letters are always
426``folded'' to upper case, unless they are explicitly escaped. This is 426``folded'' to upper case, unless they are explicitly escaped. This is
427in contrast to Emacs Lisp, in which upper case and lower case letters 427in contrast to Emacs Lisp, in which upper case and lower case letters
428are distinct. 428are distinct.
diff --git a/lispref/positions.texi b/lispref/positions.texi
index b3f4bd17b42..28ff5ca4e04 100644
--- a/lispref/positions.texi
+++ b/lispref/positions.texi
@@ -626,8 +626,8 @@ A negative argument means move backward but still to a less deep spot.
626 626
627@deffn Command down-list arg 627@deffn Command down-list arg
628This function moves forward into @var{arg} levels of parentheses. A 628This function moves forward into @var{arg} levels of parentheses. A
629negative argument means move backward but still go @var{arg} levels 629negative argument means move backward but still go
630deeper in parentheses. 630deeper in parentheses (@minus{}@var{arg} levels).
631@end deffn 631@end deffn
632 632
633@deffn Command forward-sexp arg 633@deffn Command forward-sexp arg
diff --git a/lispref/symbols.texi b/lispref/symbols.texi
index 7d7825d88fc..f3d13ebdad7 100644
--- a/lispref/symbols.texi
+++ b/lispref/symbols.texi
@@ -241,7 +241,7 @@ However, this normally happens only as part of the abbrev mechanism
241 241
242@cindex CL note---symbol in obarrays 242@cindex CL note---symbol in obarrays
243@quotation 243@quotation
244@b{Common Lisp note:} in Common Lisp, a single symbol may be interned in 244@b{Common Lisp note:} In Common Lisp, a single symbol may be interned in
245several obarrays. 245several obarrays.
246@end quotation 246@end quotation
247 247