Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit af8a015

Browse files
committed
Consistency: "{\bf ...}" ==> "\strong{...}"
"{\em ...}" ==> "\emph{...}" Not at all sure what to do with "{\rm ...}". Leaving it for now.
1 parent b215137 commit af8a015

34 files changed

Lines changed: 62 additions & 60 deletions

Doc/ext.tex

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1303,9 +1303,10 @@ \section{Building a Dynamically Loadable Module}
13031303

13041304
\subsection{Shared Libraries}
13051305

1306-
You must link the \samp{.o} file to produce a shared library. This is
1307-
done using a special invocation of the \UNIX{} loader/linker, {\em
1308-
ld}(1). Unfortunately the invocation differs slightly per system.
1306+
You must link the \file{.o} file to produce a shared library. This is
1307+
done using a special invocation of the \UNIX{} loader/linker,
1308+
\emph{ld}(1). Unfortunately the invocation differs slightly per
1309+
system.
13091310

13101311
On SunOS 4, use
13111312
\bcode\begin{verbatim}
@@ -1336,7 +1337,7 @@ \subsection{Shared Libraries}
13361337

13371338
\subsection{SGI IRIX 4 Dynamic Loading}
13381339

1339-
{\bf IMPORTANT:} You must compile your extension module with the
1340+
\strong{IMPORTANT:} You must compile your extension module with the
13401341
additional \C{} flag \samp{-G0} (or \samp{-G 0}). This instruct the
13411342
assembler to generate position-independent code.
13421343

Doc/ext/ext.tex

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1303,9 +1303,10 @@ \section{Building a Dynamically Loadable Module}
13031303

13041304
\subsection{Shared Libraries}
13051305

1306-
You must link the \samp{.o} file to produce a shared library. This is
1307-
done using a special invocation of the \UNIX{} loader/linker, {\em
1308-
ld}(1). Unfortunately the invocation differs slightly per system.
1306+
You must link the \file{.o} file to produce a shared library. This is
1307+
done using a special invocation of the \UNIX{} loader/linker,
1308+
\emph{ld}(1). Unfortunately the invocation differs slightly per
1309+
system.
13091310

13101311
On SunOS 4, use
13111312
\bcode\begin{verbatim}
@@ -1336,7 +1337,7 @@ \subsection{Shared Libraries}
13361337

13371338
\subsection{SGI IRIX 4 Dynamic Loading}
13381339

1339-
{\bf IMPORTANT:} You must compile your extension module with the
1340+
\strong{IMPORTANT:} You must compile your extension module with the
13401341
additional \C{} flag \samp{-G0} (or \samp{-G 0}). This instruct the
13411342
assembler to generate position-independent code.
13421343

Doc/lib/libaudioop.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ \section{Built-in Module \sectcode{audioop}}
133133
\end{funcdesc}
134134

135135
\begin{funcdesc}{max}{fragment\, width}
136-
Return the maximum of the {\em absolute value} of all samples in a
136+
Return the maximum of the \emph{absolute value} of all samples in a
137137
fragment.
138138
\end{funcdesc}
139139

Doc/lib/libcopy.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ \section{Standard Module \sectcode{copy}}
2525
\begin{itemize}
2626

2727
\item
28-
A {\em shallow copy} constructs a new compound object and then (to the
29-
extent possible) inserts {\em references} into it to the objects found
28+
A \emph{shallow copy} constructs a new compound object and then (to the
29+
extent possible) inserts \emph{references} into it to the objects found
3030
in the original.
3131

3232
\item
33-
A {\em deep copy} constructs a new compound object and then,
34-
recursively, inserts {\em copies} into it of the objects found in the
33+
A \emph{deep copy} constructs a new compound object and then,
34+
recursively, inserts \emph{copies} into it of the objects found in the
3535
original.
3636

3737
\end{itemize}
@@ -46,7 +46,7 @@ \section{Standard Module \sectcode{copy}}
4646
contain a reference to themselves) may cause a recursive loop.
4747

4848
\item
49-
Because deep copy copies {\em everything} it may copy too much, e.g.\
49+
Because deep copy copies \emph{everything} it may copy too much, e.g.\
5050
administrative data structures that should be shared even between
5151
copies.
5252

Doc/lib/libcrypt.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ \section{Built-in Module \sectcode{crypt}}
22
\label{module-crypt}
33
\bimodindex{crypt}
44

5-
This module implements an interface to the crypt({\bf 3}) routine,
5+
This module implements an interface to the crypt(\strong{3}) routine,
66
which is a one-way hash function based upon a modified DES algorithm;
77
see the \UNIX{} man page for further details. Possible uses include
88
allowing Python scripts to accept typed passwords from the user, or

Doc/lib/libfm.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ \section{Built-in Module \sectcode{fm}}
22
\label{module-fm}
33
\bimodindex{fm}
44

5-
This module provides access to the IRIS {\em Font Manager} library.
5+
This module provides access to the IRIS \emph{Font Manager} library.
66
It is available only on Silicon Graphics machines.
77
See also: 4Sight User's Guide, Section 1, Chapter 5: Using the IRIS
88
Font Manager.

Doc/lib/libfuncs.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,8 @@ \section{Built-in Functions}
393393
\code{fopen()}: \var{filename} is the file name to be opened,
394394
\var{mode} indicates how the file is to be opened: \code{'r'} for
395395
reading, \code{'w'} for writing (truncating an existing file), and
396-
\code{'a'} opens it for appending (which on {\em some} \UNIX{}
397-
systems means that {\em all} writes append to the end of the file,
396+
\code{'a'} opens it for appending (which on \emph{some} \UNIX{}
397+
systems means that \emph{all} writes append to the end of the file,
398398
regardless of the current seek position).
399399
Modes \code{'r+'}, \code{'w+'} and
400400
\code{'a+'} open the file for updating, provided the underlying

Doc/lib/libgl.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ \section{Built-in Module \sectcode{gl}}
33
\bimodindex{gl}
44

55
This module provides access to the Silicon Graphics
6-
{\em Graphics Library}.
6+
\emph{Graphics Library}.
77
It is available only on Silicon Graphics machines.
88

99
\strong{Warning:}
@@ -191,7 +191,7 @@ \section{Standard Modules \sectcode{GL} and \sectcode{DEVICE}}
191191
\stmodindex{DEVICE}
192192

193193
These modules define the constants used by the Silicon Graphics
194-
{\em Graphics Library}
194+
\emph{Graphics Library}
195195
that C programmers find in the header files
196196
\file{<gl/gl.h>}
197197
and

Doc/lib/libmarshal.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ \section{Built-in Module \sectcode{marshal}}
3434
supported; and recursive lists and dictionaries should not be written
3535
(they will cause infinite loops).
3636

37-
{\bf Caveat:} On machines where C's \code{long int} type has more than
37+
\strong{Caveat:} On machines where C's \code{long int} type has more than
3838
32 bits (such as the DEC Alpha), it
3939
is possible to create plain Python integers that are longer than 32
4040
bits. Since the current \code{marshal} module uses 32 bits to

Doc/lib/libmpz.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ \section{Built-in Module \sectcode{mpz}}
3333
method, described below.
3434
\end{funcdesc}
3535

36-
A number of {\em extra} functions are defined in this module. Non
36+
A number of \emph{extra} functions are defined in this module. Non
3737
mpz-arguments are converted to mpz-values first, and the functions
3838
return mpz-numbers.
3939

0 commit comments

Comments
 (0)