aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorPaul Eggert2011-12-11 21:32:49 -0800
committerPaul Eggert2011-12-11 21:32:49 -0800
commit333f9019e29e9b6de3a7ec07448be1d364ba540b (patch)
treefd19625604abbd2784e9c9de92c613ff965ea11d /doc/lispref
parent11636b221d2897aed5ca9a762d7b61afd20b6168 (diff)
downloademacs-333f9019e29e9b6de3a7ec07448be1d364ba540b.tar.gz
emacs-333f9019e29e9b6de3a7ec07448be1d364ba540b.zip
Spelling fixes.
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/ChangeLog2
-rw-r--r--doc/lispref/elisp.texi4
-rw-r--r--doc/lispref/internals.texi4
-rw-r--r--doc/lispref/nonascii.texi2
-rw-r--r--doc/lispref/vol1.texi6
-rw-r--r--doc/lispref/vol2.texi4
6 files changed, 11 insertions, 11 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index d620c9e3c4c..44d44e7528c 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -9754,7 +9754,7 @@
9754 directory have been changed to reflect this. 9754 directory have been changed to reflect this.
9755 9755
9756 * All instances of @indentedresultt{} have been changed to 9756 * All instances of @indentedresultt{} have been changed to
9757 ` @result{}', using 5 spaces at the begining of the line. 9757 ` @result{}', using 5 spaces at the beginning of the line.
9758 9758
97591989-04-24 Robert J. Chassell (bob@rice-chex.ai.mit.edu) 97591989-04-24 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
9760 9760
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index cefa917a4e1..98eaf1f8ade 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -1381,7 +1381,7 @@ Operating System Interface
1381* System Environment:: Distinguish the name and kind of system. 1381* System Environment:: Distinguish the name and kind of system.
1382* User Identification:: Finding the name and user id of the user. 1382* User Identification:: Finding the name and user id of the user.
1383* Time of Day:: Getting the current time. 1383* Time of Day:: Getting the current time.
1384* Time Conversion:: Converting a time from numeric form to 1384* Time Conversion:: Converting a time from numeric form to
1385 calendrical data and vice versa. 1385 calendrical data and vice versa.
1386* Time Parsing:: Converting a time from numeric form to text 1386* Time Parsing:: Converting a time from numeric form to text
1387 and vice versa. 1387 and vice versa.
@@ -1438,7 +1438,7 @@ Tips and Conventions
1438GNU Emacs Internals 1438GNU Emacs Internals
1439 1439
1440* Building Emacs:: How the dumped Emacs is made. 1440* Building Emacs:: How the dumped Emacs is made.
1441* Pure Storage:: A kludge to make preloaded Lisp functions sharable. 1441* Pure Storage:: Kludge to make preloaded Lisp functions shareable.
1442* Garbage Collection:: Reclaiming space for Lisp objects no longer used. 1442* Garbage Collection:: Reclaiming space for Lisp objects no longer used.
1443* Memory Usage:: Info about total size of Lisp objects made so far. 1443* Memory Usage:: Info about total size of Lisp objects made so far.
1444* Writing Emacs Primitives:: Writing C code for Emacs. 1444* Writing Emacs Primitives:: Writing C code for Emacs.
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi
index 0168c564e34..9ef4646b50b 100644
--- a/doc/lispref/internals.texi
+++ b/doc/lispref/internals.texi
@@ -13,7 +13,7 @@ internal aspects of GNU Emacs that may be of interest to C programmers.
13 13
14@menu 14@menu
15* Building Emacs:: How the dumped Emacs is made. 15* Building Emacs:: How the dumped Emacs is made.
16* Pure Storage:: A kludge to make preloaded Lisp functions sharable. 16* Pure Storage:: Kludge to make preloaded Lisp functions shareable.
17* Garbage Collection:: Reclaiming space for Lisp objects no longer used. 17* Garbage Collection:: Reclaiming space for Lisp objects no longer used.
18* Memory Usage:: Info about total size of Lisp objects made so far. 18* Memory Usage:: Info about total size of Lisp objects made so far.
19* Writing Emacs Primitives:: Writing C code for Emacs. 19* Writing Emacs Primitives:: Writing C code for Emacs.
@@ -196,7 +196,7 @@ function definition in pure storage. If it is non-@code{nil}, then the
196function definition is copied into pure storage. 196function definition is copied into pure storage.
197 197
198This flag is @code{t} while loading all of the basic functions for 198This flag is @code{t} while loading all of the basic functions for
199building Emacs initially (allowing those functions to be sharable and 199building Emacs initially (allowing those functions to be shareable and
200non-collectible). Dumping Emacs as an executable always writes 200non-collectible). Dumping Emacs as an executable always writes
201@code{nil} in this variable, regardless of the value it actually has 201@code{nil} in this variable, regardless of the value it actually has
202before and after dumping. 202before and after dumping.
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi
index 298c7c3d1a8..46dbbb08e57 100644
--- a/doc/lispref/nonascii.texi
+++ b/doc/lispref/nonascii.texi
@@ -1580,7 +1580,7 @@ decoding functions (@pxref{Explicit Encoding}).
1580 Sometimes, you need to prefer several coding systems for some 1580 Sometimes, you need to prefer several coding systems for some
1581operation, rather than fix a single one. Emacs lets you specify a 1581operation, rather than fix a single one. Emacs lets you specify a
1582priority order for using coding systems. This ordering affects the 1582priority order for using coding systems. This ordering affects the
1583sorting of lists of coding sysems returned by functions such as 1583sorting of lists of coding systems returned by functions such as
1584@code{find-coding-systems-region} (@pxref{Lisp and Coding Systems}). 1584@code{find-coding-systems-region} (@pxref{Lisp and Coding Systems}).
1585 1585
1586@defun coding-system-priority-list &optional highestp 1586@defun coding-system-priority-list &optional highestp
diff --git a/doc/lispref/vol1.texi b/doc/lispref/vol1.texi
index 914ba5b1fd8..c89447fc139 100644
--- a/doc/lispref/vol1.texi
+++ b/doc/lispref/vol1.texi
@@ -44,7 +44,7 @@
44@end ifset 44@end ifset
45 45
46@c per rms and peterb, use 10pt fonts for the main text, mostly to 46@c per rms and peterb, use 10pt fonts for the main text, mostly to
47@c save on paper cost. 47@c save on paper cost.
48@c Do this inside @tex for now, so current makeinfo does not complain. 48@c Do this inside @tex for now, so current makeinfo does not complain.
49@tex 49@tex
50@ifset smallbook 50@ifset smallbook
@@ -1402,7 +1402,7 @@ Operating System Interface
1402* System Environment:: Distinguish the name and kind of system. 1402* System Environment:: Distinguish the name and kind of system.
1403* User Identification:: Finding the name and user id of the user. 1403* User Identification:: Finding the name and user id of the user.
1404* Time of Day:: Getting the current time. 1404* Time of Day:: Getting the current time.
1405* Time Conversion:: Converting a time from numeric form to 1405* Time Conversion:: Converting a time from numeric form to
1406 calendrical data and vice versa. 1406 calendrical data and vice versa.
1407* Time Parsing:: Converting a time from numeric form to text 1407* Time Parsing:: Converting a time from numeric form to text
1408 and vice versa. 1408 and vice versa.
@@ -1458,7 +1458,7 @@ Tips and Conventions
1458GNU Emacs Internals 1458GNU Emacs Internals
1459 1459
1460* Building Emacs:: How the dumped Emacs is made. 1460* Building Emacs:: How the dumped Emacs is made.
1461* Pure Storage:: A kludge to make preloaded Lisp functions sharable. 1461* Pure Storage:: Kludge to make preloaded Lisp functions shareable.
1462* Garbage Collection:: Reclaiming space for Lisp objects no longer used. 1462* Garbage Collection:: Reclaiming space for Lisp objects no longer used.
1463* Memory Usage:: Info about total size of Lisp objects made so far. 1463* Memory Usage:: Info about total size of Lisp objects made so far.
1464* Writing Emacs Primitives:: Writing C code for Emacs. 1464* Writing Emacs Primitives:: Writing C code for Emacs.
diff --git a/doc/lispref/vol2.texi b/doc/lispref/vol2.texi
index 1f84b267c9b..d45d23da365 100644
--- a/doc/lispref/vol2.texi
+++ b/doc/lispref/vol2.texi
@@ -1401,7 +1401,7 @@ Operating System Interface
1401* System Environment:: Distinguish the name and kind of system. 1401* System Environment:: Distinguish the name and kind of system.
1402* User Identification:: Finding the name and user id of the user. 1402* User Identification:: Finding the name and user id of the user.
1403* Time of Day:: Getting the current time. 1403* Time of Day:: Getting the current time.
1404* Time Conversion:: Converting a time from numeric form to 1404* Time Conversion:: Converting a time from numeric form to
1405 calendrical data and vice versa. 1405 calendrical data and vice versa.
1406* Time Parsing:: Converting a time from numeric form to text 1406* Time Parsing:: Converting a time from numeric form to text
1407 and vice versa. 1407 and vice versa.
@@ -1457,7 +1457,7 @@ Tips and Conventions
1457GNU Emacs Internals 1457GNU Emacs Internals
1458 1458
1459* Building Emacs:: How the dumped Emacs is made. 1459* Building Emacs:: How the dumped Emacs is made.
1460* Pure Storage:: A kludge to make preloaded Lisp functions sharable. 1460* Pure Storage:: Kludge to make preloaded Lisp functions shareable.
1461* Garbage Collection:: Reclaiming space for Lisp objects no longer used. 1461* Garbage Collection:: Reclaiming space for Lisp objects no longer used.
1462* Memory Usage:: Info about total size of Lisp objects made so far. 1462* Memory Usage:: Info about total size of Lisp objects made so far.
1463* Writing Emacs Primitives:: Writing C code for Emacs. 1463* Writing Emacs Primitives:: Writing C code for Emacs.