aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/cl-preloaded.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-preloaded.el b/lisp/emacs-lisp/cl-preloaded.el
index 4e73a4a31b7..92d29996f91 100644
--- a/lisp/emacs-lisp/cl-preloaded.el
+++ b/lisp/emacs-lisp/cl-preloaded.el
@@ -61,7 +61,7 @@
61(fset 'cl--make-slot-desc 61(fset 'cl--make-slot-desc
62 ;; To break circularity, we pre-define the slot constructor by hand. 62 ;; To break circularity, we pre-define the slot constructor by hand.
63 ;; It's redefined a bit further down as part of the cl-defstruct of 63 ;; It's redefined a bit further down as part of the cl-defstruct of
64 ;; cl--slot-descriptor. 64 ;; cl-slot-descriptor.
65 ;; BEWARE: Obviously, it's important to keep the two in sync! 65 ;; BEWARE: Obviously, it's important to keep the two in sync!
66 (lambda (name &optional initform type props) 66 (lambda (name &optional initform type props)
67 (record 'cl-slot-descriptor 67 (record 'cl-slot-descriptor
@@ -194,7 +194,7 @@
194 (name nil :type symbol) ;The type name. 194 (name nil :type symbol) ;The type name.
195 (docstring nil :type string) 195 (docstring nil :type string)
196 (parents nil :type (list-of cl--class)) ;The included struct. 196 (parents nil :type (list-of cl--class)) ;The included struct.
197 (slots nil :type (vector cl--slot-descriptor)) 197 (slots nil :type (vector cl-slot-descriptor))
198 (index-table nil :type hash-table) 198 (index-table nil :type hash-table)
199 (tag nil :type symbol) ;Placed in cl-tag-slot. Holds the struct-class object. 199 (tag nil :type symbol) ;Placed in cl-tag-slot. Holds the struct-class object.
200 (type nil :type (memq (vector list))) 200 (type nil :type (memq (vector list)))