diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/control.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index f85ee947790..adec632da6a 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi | |||
| @@ -317,7 +317,8 @@ list of the form @code{(@var{pattern} @var{body-forms}@dots{})}. | |||
| 317 | @var{pattern} of each clause, in textual order. If the value matches, | 317 | @var{pattern} of each clause, in textual order. If the value matches, |
| 318 | the clause succeeds; @code{pcase} then evaluates its @var{body-forms}, | 318 | the clause succeeds; @code{pcase} then evaluates its @var{body-forms}, |
| 319 | and returns the value of the last of @var{body-forms}. Any remaining | 319 | and returns the value of the last of @var{body-forms}. Any remaining |
| 320 | @var{clauses} are ignored. | 320 | @var{clauses} are ignored. If no clauses match, then the @code{pcase} |
| 321 | form evaluates to @code{nil}. | ||
| 321 | 322 | ||
| 322 | The @var{pattern} part of a clause can be of one of two types: | 323 | The @var{pattern} part of a clause can be of one of two types: |
| 323 | @dfn{QPattern}, a pattern quoted with a backquote; or a | 324 | @dfn{QPattern}, a pattern quoted with a backquote; or a |