emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] fix/bug-31311-pcase-doc f7570e3 1/9: add some @group


From: Thien-Thi Nguyen
Subject: [Emacs-diffs] fix/bug-31311-pcase-doc f7570e3 1/9: add some @group
Date: Sun, 20 May 2018 14:39:27 -0400 (EDT)

branch: fix/bug-31311-pcase-doc
commit f7570e3087f50f9f61792aef5e49f3e502d0d293
Author: Thien-Thi Nguyen <address@hidden>
Commit: Thien-Thi Nguyen <address@hidden>

    add some @group
---
 doc/lispref/control.texi | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index a31f596..21e4eac 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -739,14 +739,18 @@ i.e., the result of evaluating @code{(* 3 3)}, or 9.
 @item @var{boolean-expression} is evaluated:
 
 @example
address@hidden
 start:   (< 9 (incf n)        100)
 becomes: (< 9 (setq n (1+ n)) 100)
 becomes: (< 9 (setq n (1+ 9)) 100)
address@hidden group
address@hidden
 becomes: (< 9 (setq n 10)     100)
                                    ; @r{side-effect here!}
 becomes: (< 9       n         100) ; @address@hidden now bound to 10}
 becomes: (< 9      10         100)
 becomes: t
address@hidden group
 @end example
 
 @item Because the result of the evaluation is address@hidden,



reply via email to

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