emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 1436ce8: Fix a minor markup problem in ELisp manual


From: Eli Zaretskii
Subject: [Emacs-diffs] master 1436ce8: Fix a minor markup problem in ELisp manual
Date: Wed, 6 Sep 2017 14:01:30 -0400 (EDT)

branch: master
commit 1436ce83d39112c44c434e95d6bd2e2320b5c73d
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    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.
---
 doc/lispref/functions.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi
index 0d407ab..116c299 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.
 
address@hidden
 @example
address@hidden
 ;; @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)
address@hidden example
 @end group
address@hidden example
 @end defun
 
 @defun mapc function sequence



reply via email to

[Prev in Thread] Current Thread [Next in Thread]