aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2018-01-26 16:37:29 -0500
committerStefan Monnier2018-01-26 16:37:29 -0500
commitc9a268552c8294bbca607da239528e6b89f8fb5b (patch)
treec267b6db350e7626abf8bd78832d2cee1987e55f
parent606c94f47ddef5a5a3dcff13048369253bbdcb3c (diff)
downloademacs-c9a268552c8294bbca607da239528e6b89f8fb5b.tar.gz
emacs-c9a268552c8294bbca607da239528e6b89f8fb5b.zip
* lisp/emacs-lisp/cl-preloaded.el: Update cl-slot-descriptor name.
-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)))