]> code.delx.au - gnu-emacs/blobdiff - lispref/functions.texi
Update xrefs.
[gnu-emacs] / lispref / functions.texi
index 6222ea4c8a5d54f10cb37eefde0726bfe198a014..a4c0b4b8fe4b57d18714632cbbdb93603c9b9a2e 100644 (file)
@@ -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])