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 2eb044b 16/16: (docstring) move ‘


From: Thien-Thi Nguyen
Subject: [Emacs-diffs] fix/bug-31311-pcase-doc 2eb044b 16/16: (docstring) move ‘or’ and ‘and’ to end of table
Date: Sun, 13 May 2018 13:16:36 -0400 (EDT)

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

    (docstring) move ‘or’ and ‘and’ to end of table
    
    they are higher-order
---
 lisp/emacs-lisp/pcase.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/pcase.el b/lisp/emacs-lisp/pcase.el
index 57a2952..fff7bb2 100644
--- a/lisp/emacs-lisp/pcase.el
+++ b/lisp/emacs-lisp/pcase.el
@@ -126,12 +126,12 @@ the pattern matches.  A pattern can take one of the forms:
   SYMBOL           matches anything and binds it to SYMBOL.
                    If a SYMBOL is used twice in the same pattern
                    the second occurrence becomes an `eq'uality test.
-  (or PAT...)      matches if any of the patterns matches.
-  (and PAT...)     matches if all the patterns match.
   (pred FUN)       matches if FUN called on EXPVAL returns non-nil.
   (app FUN PAT)    matches if FUN called on EXPVAL matches PAT.
   (guard BOOLEXP)  matches if BOOLEXP evaluates to non-nil.
   (let PAT EXPR)   matches if EXPR matches PAT.
+  (or PAT...)      matches if any of the patterns matches.
+  (and PAT...)     matches if all the patterns match.
 
 FUN in `pred' and `app' can take one of the forms:
   SYMBOL  or  (lambda ARGS BODY)



reply via email to

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