]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/cl-preloaded.el: Update cl-slot-descriptor name.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 26 Jan 2018 21:37:29 +0000 (16:37 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 26 Jan 2018 21:37:29 +0000 (16:37 -0500)
lisp/emacs-lisp/cl-preloaded.el

index 4e73a4a31b779d297b55df2627e5d7ba69d4c454..92d29996f91178504eb46d90d67319ad77d73cbb 100644 (file)
@@ -61,7 +61,7 @@
 (fset 'cl--make-slot-desc
       ;; To break circularity, we pre-define the slot constructor by hand.
       ;; It's redefined a bit further down as part of the cl-defstruct of
-      ;; cl--slot-descriptor.
+      ;; cl-slot-descriptor.
       ;; BEWARE: Obviously, it's important to keep the two in sync!
       (lambda (name &optional initform type props)
         (record 'cl-slot-descriptor
   (name nil :type symbol)               ;The type name.
   (docstring nil :type string)
   (parents nil :type (list-of cl--class)) ;The included struct.
-  (slots nil :type (vector cl--slot-descriptor))
+  (slots nil :type (vector cl-slot-descriptor))
   (index-table nil :type hash-table)
   (tag nil :type symbol) ;Placed in cl-tag-slot.  Holds the struct-class object.
   (type nil :type (memq (vector list)))