Fix a minor markup problem in ELisp manual
* doc/lispref/functions.texi (Mapping Functions): Fix the order of @example and @group. For the details, see http://lists.gnu.org/archive/html/bug-texinfo/2017-09/msg00007.html.
This commit is contained in:
parent
9604f9cd33
commit
1436ce83d3
1 changed files with 2 additions and 2 deletions
|
@ -994,16 +994,16 @@ the results (which must be lists), by altering the results (using
|
|||
@code{nconc}; @pxref{Rearrangement}). Like with @code{mapcar},
|
||||
@var{sequence} can be of any type except a char-table.
|
||||
|
||||
@group
|
||||
@example
|
||||
@group
|
||||
;; @r{Contrast this:}
|
||||
(mapcar 'list '(a b c d))
|
||||
@result{} ((a) (b) (c) (d))
|
||||
;; @r{with this:}
|
||||
(mapcan 'list '(a b c d))
|
||||
@result{} (a b c d)
|
||||
@end example
|
||||
@end group
|
||||
@end example
|
||||
@end defun
|
||||
|
||||
@defun mapc function sequence
|
||||
|
|
Loading…
Add table
Reference in a new issue