]> code.delx.au - gnu-emacs/blobdiff - lisp/emacs-lisp/pcase.el
Prefer directed to neutral quotes
[gnu-emacs] / lisp / emacs-lisp / pcase.el
index 72684579176b51d3c6b25f7f7ffa1454e4f57eae..5fe36bb92d4323ddb84484e8e50157cac3771985 100644 (file)
@@ -115,8 +115,8 @@ Patterns can take the following forms:
   SYMBOL       matches anything and binds it to SYMBOL.
   (or PAT...)  matches if any of the patterns matches.
   (and PAT...) matches if all the patterns match.
-  'VAL         matches if the object is `equal' to VAL
-  ATOM         is a shorthand for 'ATOM.
+  \\='VAL              matches if the object is `equal' to VAL
+  ATOM         is a shorthand for \\='ATOM.
                   ATOM can be a keyword, an integer, or a string.
   (pred FUN)   matches if FUN applied to the object returns non-nil.
   (guard BOOLEXP)      matches if BOOLEXP evaluates to non-nil.