From: Eli Zaretskii Date: Wed, 6 Sep 2017 18:00:29 +0000 (+0300) Subject: Fix a minor markup problem in ELisp manual X-Git-Tag: emacs-26.0.90~241 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1436ce83d39112c44c434e95d6bd2e2320b5c73d;p=emacs.git 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. --- diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 0d407ab966b..116c2990ba2 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi @@ -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