aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/sequences.texi
diff options
context:
space:
mode:
authorPaul Eggert2015-09-15 08:46:48 -0700
committerPaul Eggert2015-09-15 08:48:44 -0700
commitef7dbdf5873bf0a1f3f0e64e5d019e74d5b15b9e (patch)
tree5b1d35e609ce4481816662709ac677db1468495b /doc/lispref/sequences.texi
parentc051487fcf379febf4ce5b38de7017609c84a106 (diff)
downloademacs-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.texi4
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.
342The argument @var{predicate} must be a function that accepts two 342The argument @var{predicate} must be a function that accepts two
343arguments. It is called with two elements of @var{sequence}. To get an 343arguments. It is called with two elements of @var{sequence}. To get an
344increasing order sort, the @var{predicate} should return non-@code{nil} if the 344increasing order sort, the @var{predicate} should return non-@code{nil} if the
345first element is ``less than'' the second, or @code{nil} if not. 345first element is less than the second, or @code{nil} if not.
346 346
347The comparison function @var{predicate} must give reliable results for 347The comparison function @var{predicate} must give reliable results for
348any given pair of arguments, at least within a single call to 348any given pair of arguments, at least within a single call to
@@ -1490,7 +1490,7 @@ deletion, rotation, and modulo-indexed reference and traversal. An
1490efficient ring data structure is implemented by the @code{ring} 1490efficient ring data structure is implemented by the @code{ring}
1491package. It provides the functions listed in this section. 1491package. 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
1494mark ring, are actually implemented as simple lists, @emph{not} using 1494mark ring, are actually implemented as simple lists, @emph{not} using
1495the @code{ring} package; thus the following functions won't work on 1495the @code{ring} package; thus the following functions won't work on
1496them. 1496them.