diff options
| author | Andrea Corallo | 2024-03-09 16:14:14 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2024-03-09 16:20:17 +0100 |
| commit | 3be70a13d7b27ccdffbd4efb44752d15376d5e57 (patch) | |
| tree | 967ab54695bfc39343622879fc496245ead2dd37 | |
| parent | cc2579c10bc67dc375247490bb55367ef0800435 (diff) | |
| download | emacs-3be70a13d7b27ccdffbd4efb44752d15376d5e57.tar.gz emacs-3be70a13d7b27ccdffbd4efb44752d15376d5e57.zip | |
Run 'syncdoc-update-type-hierarchy'.
* doc/lispref/elisp_type_hierarchy.jpg: Update.
* doc/lispref/elisp_type_hierarchy.txt: Likewise.
| -rw-r--r-- | doc/lispref/elisp_type_hierarchy.jpg | bin | 358752 -> 345570 bytes | |||
| -rw-r--r-- | doc/lispref/elisp_type_hierarchy.txt | 40 |
2 files changed, 22 insertions, 18 deletions
diff --git a/doc/lispref/elisp_type_hierarchy.jpg b/doc/lispref/elisp_type_hierarchy.jpg index 518255566b9..a2e14490dfa 100644 --- a/doc/lispref/elisp_type_hierarchy.jpg +++ b/doc/lispref/elisp_type_hierarchy.jpg | |||
| Binary files differ | |||
diff --git a/doc/lispref/elisp_type_hierarchy.txt b/doc/lispref/elisp_type_hierarchy.txt index 00b6bb91458..d1be8f56c72 100644 --- a/doc/lispref/elisp_type_hierarchy.txt +++ b/doc/lispref/elisp_type_hierarchy.txt | |||
| @@ -1,29 +1,33 @@ | |||
| 1 | | Type | Derived Types | | 1 | | Type | Derived Types | |
| 2 | |---------------------+------------------------------------------------------------| | 2 | |---------------------+------------------------------------------------------------| |
| 3 | | atom | mutex record font-spec frame number-or-marker | | ||
| 4 | | | tree-sitter-compiled-query tree-sitter-node font-entity | | ||
| 5 | | | tree-sitter-parser hash-table window-configuration | | ||
| 6 | | | function user-ptr overlay array process font-object symbol | | ||
| 7 | | | obarray condvar buffer terminal thread window | | ||
| 8 | | | native-comp-unit | | ||
| 3 | | cl-structure-object | xref-elisp-location org-cite-processor cl--generic-method | | 9 | | cl-structure-object | xref-elisp-location org-cite-processor cl--generic-method | |
| 4 | | | cl--random-state register-preview-info cl--generic | | 10 | | | cl--random-state register-preview-info cl--generic | |
| 5 | | | cl--class cl-slot-descriptor uniquify-item registerv | | 11 | | | cl--class cl-slot-descriptor uniquify-item registerv | |
| 6 | | | isearch--state cl--generic-generalizer lisp-indent-state | | 12 | | | isearch--state cl--generic-generalizer lisp-indent-state | |
| 13 | | t | sequence atom | | ||
| 14 | | compiled-function | subr byte-code-function | | ||
| 15 | | integer | fixnum bignum | | ||
| 16 | | symbol | symbol-with-pos keyword boolean | | ||
| 7 | | accessor | oclosure-accessor | | 17 | | accessor | oclosure-accessor | |
| 8 | | oclosure | advice cconv--interactive-helper advice--forward accessor | | 18 | | oclosure | advice cconv--interactive-helper advice--forward accessor | |
| 9 | | | save-some-buffers-function cl--generic-nnm | | 19 | | | save-some-buffers-function cl--generic-nnm | |
| 10 | | atom | ppss decoded-time oclosure cl-structure-object timer | | 20 | | cons | ppss decoded-time | |
| 11 | | | native-comp-unit obarray symbol number-or-marker overlay | | 21 | | cl--class | cl-structure-class oclosure--class built-in-class | |
| 12 | | | window-configuration process window buffer frame | | ||
| 13 | | | hash-table terminal thread mutex condvar font-spec | | ||
| 14 | | | font-entity font-object user-ptr tree-sitter-parser | | ||
| 15 | | | tree-sitter-node tree-sitter-compiled-query function array | | ||
| 16 | | cl--class | cl-structure-class oclosure--class | | ||
| 17 | | subr | subr-primitive subr-native-elisp | | 22 | | subr | subr-primitive subr-native-elisp | |
| 18 | | function | compiled-function module-function | | 23 | | array | string vector bool-vector char-table | |
| 19 | | compiled-function | subr byte-code-function | | 24 | | number | float integer | |
| 20 | | list | cons null | | 25 | | number-or-marker | integer-or-marker number | |
| 26 | | function | oclosure compiled-function interpreted-function | | ||
| 27 | | | module-function | | ||
| 28 | | sequence | list array | | ||
| 29 | | integer-or-marker | integer marker | | ||
| 21 | | boolean | null | | 30 | | boolean | null | |
| 22 | | array | string char-table bool-vector vector | | 31 | | list | null cons | |
| 23 | | symbol | symbol-with-pos boolean keyword | | 32 | | record | cl-structure-object | |
| 24 | | integer | fixnum bignum | | 33 | | vector | timer | |
| 25 | | number-or-marker | number integer-or-marker | | ||
| 26 | | integer-or-marker | marker integer | | ||
| 27 | | number | integer float | | ||
| 28 | | sequence | array list | | ||
| 29 | | t | atom sequence | | ||