[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] fix/bug-31311-pcase-doc 0fa3538 4/4: add blank line before
From: |
Thien-Thi Nguyen |
Subject: |
[Emacs-diffs] fix/bug-31311-pcase-doc 0fa3538 4/4: add blank line before each @item in @table |
Date: |
Mon, 30 Apr 2018 09:12:11 -0400 (EDT) |
branch: fix/bug-31311-pcase-doc
commit 0fa353897baf831643e6569c2e38589de438011e
Author: Thien-Thi Nguyen <address@hidden>
Commit: Thien-Thi Nguyen <address@hidden>
add blank line before each @item in @table
---
doc/lispref/control.texi | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index 4056da3..c350d4f 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -434,18 +434,22 @@ Backquoted patterns have the form @address@hidden where
@var{qpattern} can have the following forms:
@table @code
+
@item (@var{qpattern1} . @var{qpattern2})
Matches if the value being matched is a cons cell whose @code{car}
matches @var{qpattern1} and whose @code{cdr} matches @var{qpattern2}.
This readily generalizes to backquoted lists as in
@address@hidden(@var{qpattern1} @var{qpattern2} @dots{})}}.
+
@item address@hidden @var{qpattern2} @dots{} @var{qpatternm}]
Matches if the value being matched is a vector of length @var{m} whose
@address@hidden(@var{m}-1)}th elements match @var{qpattern1},
@var{qpattern2} @dots{} @var{qpatternm}, respectively.
+
@item @var{atom}
Matches if corresponding element of the value being matched is
@code{equal} to the specified @var{atom}.
+
@item ,@var{upattern}
Matches if the corresponding element of the value being matched
matches the specified @var{upattern}.