summaryrefslogtreecommitdiff
path: root/lispref/functions.texi
diff options
context:
space:
mode:
authorKarl Berry <karl@gnu.org>2006-07-18 13:50:29 +0000
committerKarl Berry <karl@gnu.org>2006-07-18 13:50:29 +0000
commit4299563601c230f9b51b47659fdec13bec3d30e2 (patch)
tree7dee021b15e4eaf25b348bfb9c04ca8167625777 /lispref/functions.texi
parent4d30ce50e9361c678a1162a062591a5a556340f5 (diff)
downloademacs-4299563601c230f9b51b47659fdec13bec3d30e2.tar.gz
fix bad page breaks
Diffstat (limited to 'lispref/functions.texi')
-rw-r--r--lispref/functions.texi4
1 files changed, 1 insertions, 3 deletions
diff --git a/lispref/functions.texi b/lispref/functions.texi
index 6222ea4c8a5..a4c0b4b8fe4 100644
--- a/lispref/functions.texi
+++ b/lispref/functions.texi
@@ -766,12 +766,10 @@ in turn, and returns a list of the results.
The argument @var{sequence} can be any kind of sequence except a
char-table; that is, a list, a vector, a bool-vector, or a string. The
result is always a list. The length of the result is the same as the
-length of @var{sequence}.
+length of @var{sequence}. For example:
@smallexample
@group
-@exdent @r{For example:}
-
(mapcar 'car '((a b) (c d) (e f)))
@result{} (a c e)
(mapcar '1+ [1 2 3])