diff options
| author | Paul Eggert | 2015-09-15 08:46:48 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-15 08:48:44 -0700 |
| commit | ef7dbdf5873bf0a1f3f0e64e5d019e74d5b15b9e (patch) | |
| tree | 5b1d35e609ce4481816662709ac677db1468495b /doc/lispref/sequences.texi | |
| parent | c051487fcf379febf4ce5b38de7017609c84a106 (diff) | |
| download | emacs-ef7dbdf5873bf0a1f3f0e64e5d019e74d5b15b9e.tar.gz emacs-ef7dbdf5873bf0a1f3f0e64e5d019e74d5b15b9e.zip | |
Quote less in manuals
The manuals often used quotes ``...'' when it is better to use @dfn or
@code or capitalized words or no quoting at all. For example, there is
no need for the `` and '' in “if a variable has one effect for
@code{nil} values and another effect for ``non-@code{nil}'' values”.
Reword the Emacs, Lisp intro, and Lisp reference manuals to eliminate
unnecessary quoting like this, and to use @dfn etc. instead when called
for (Bug#21472).
Diffstat (limited to 'doc/lispref/sequences.texi')
| -rw-r--r-- | doc/lispref/sequences.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi index 18120dad575..f38aa350963 100644 --- a/doc/lispref/sequences.texi +++ b/doc/lispref/sequences.texi | |||
| @@ -342,7 +342,7 @@ order elements according to different criteria. | |||
| 342 | The argument @var{predicate} must be a function that accepts two | 342 | The argument @var{predicate} must be a function that accepts two |
| 343 | arguments. It is called with two elements of @var{sequence}. To get an | 343 | arguments. It is called with two elements of @var{sequence}. To get an |
| 344 | increasing order sort, the @var{predicate} should return non-@code{nil} if the | 344 | increasing order sort, the @var{predicate} should return non-@code{nil} if the |
| 345 | first element is ``less than'' the second, or @code{nil} if not. | 345 | first element is less than the second, or @code{nil} if not. |
| 346 | 346 | ||
| 347 | The comparison function @var{predicate} must give reliable results for | 347 | The comparison function @var{predicate} must give reliable results for |
| 348 | any given pair of arguments, at least within a single call to | 348 | any given pair of arguments, at least within a single call to |
| @@ -1490,7 +1490,7 @@ deletion, rotation, and modulo-indexed reference and traversal. An | |||
| 1490 | efficient ring data structure is implemented by the @code{ring} | 1490 | efficient ring data structure is implemented by the @code{ring} |
| 1491 | package. It provides the functions listed in this section. | 1491 | package. It provides the functions listed in this section. |
| 1492 | 1492 | ||
| 1493 | Note that several ``rings'' in Emacs, like the kill ring and the | 1493 | Note that several rings in Emacs, like the kill ring and the |
| 1494 | mark ring, are actually implemented as simple lists, @emph{not} using | 1494 | mark ring, are actually implemented as simple lists, @emph{not} using |
| 1495 | the @code{ring} package; thus the following functions won't work on | 1495 | the @code{ring} package; thus the following functions won't work on |
| 1496 | them. | 1496 | them. |