summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/pcase.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-05-28 00:44:32 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-05-28 00:45:00 -0700
commit4643f6c21a88d27cfb8a3410494bfd7909a98462 (patch)
treee63074a2e35341dc2625cce19e9513b5b3606e18 /lisp/emacs-lisp/pcase.el
parent89ab85f2f499126f025c6780c6ac22458f593a27 (diff)
downloademacs-4643f6c21a88d27cfb8a3410494bfd7909a98462.tar.gz
A few more doc string fixes (Bug#20385)
Diffstat (limited to 'lisp/emacs-lisp/pcase.el')
-rw-r--r--lisp/emacs-lisp/pcase.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/pcase.el b/lisp/emacs-lisp/pcase.el
index 8c4f4bcbc7d..ab82b7eaef3 100644
--- a/lisp/emacs-lisp/pcase.el
+++ b/lisp/emacs-lisp/pcase.el
@@ -133,8 +133,8 @@ FUN can refer to variables bound earlier in the pattern.
FUN is assumed to be pure, i.e. it can be dropped if its result is not used,
and two identical calls can be merged into one.
E.g. you can match pairs where the cdr is larger than the car with a pattern
-like `(,a . ,(pred (< a))) or, with more checks:
-`(,(and a (pred numberp)) . ,(and (pred numberp) (pred (< a))))
+like \\=`(,a . ,(pred (< a))) or, with more checks:
+\\=`(,(and a (pred numberp)) . ,(and (pred numberp) (pred (< a))))
Additional patterns can be defined via `pcase-defmacro'.
Currently, the following patterns are provided this way:"