diff options
| author | Eli Zaretskii | 2024-03-28 11:34:25 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2024-03-28 11:34:25 +0200 |
| commit | 35ae2c576b8570da7b2e791991ad852c648be896 (patch) | |
| tree | c1ac2fd242e23ea0a8c72a9771fe7bae2f28f3cb | |
| parent | f1fe13ea057237f5426c93876488cb95be86156c (diff) | |
| download | emacs-35ae2c576b8570da7b2e791991ad852c648be896.tar.gz emacs-35ae2c576b8570da7b2e791991ad852c648be896.zip | |
; * lisp/emacs-lisp/pcase.el (pcase--subtype-bitsets): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/pcase.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/pcase.el b/lisp/emacs-lisp/pcase.el index e2d0c0dc068..23f1bac600c 100644 --- a/lisp/emacs-lisp/pcase.el +++ b/lisp/emacs-lisp/pcase.el | |||
| @@ -688,8 +688,9 @@ recording whether the var has been referenced by earlier parts of the match." | |||
| 688 | ;; start compiling code, and hence baking the result into files). | 688 | ;; start compiling code, and hence baking the result into files). |
| 689 | (with-eval-after-load 'cl-preloaded | 689 | (with-eval-after-load 'cl-preloaded |
| 690 | (defconst pcase--subtype-bitsets (pcase--subtype-bitsets))))) | 690 | (defconst pcase--subtype-bitsets (pcase--subtype-bitsets))))) |
| 691 | "Table mapping predicates to their set of types. | 691 | "Hash table mapping type predicates to their sets of types. |
| 692 | These are the set of built-in types for which they may return non-nil. | 692 | The table maps each type predicate, such as `numberp' and `stringp', |
| 693 | to the set of built-in types for which the predicate may return non-nil. | ||
| 693 | The sets are represented as bitsets (integers) where each bit represents | 694 | The sets are represented as bitsets (integers) where each bit represents |
| 694 | a specific leaf type. Which bit represents which type is unspecified.") | 695 | a specific leaf type. Which bit represents which type is unspecified.") |
| 695 | 696 | ||