* lisp/emacs-lisp/cl-generic.el (cl--generic-struct-tag): Don't burp on
non-struct vectors.
This commit is contained in:
parent
19154876b9
commit
c5565ce5b0
1 changed files with 3 additions and 2 deletions
|
@ -986,8 +986,9 @@ The value returned is a list of elements of the form
|
|||
`(and (vectorp ,name)
|
||||
(> (length ,name) 0)
|
||||
(let ((tag (aref ,name 0)))
|
||||
(if (eq (symbol-function tag) :quick-object-witness-check)
|
||||
tag))))
|
||||
(and (symbolp tag)
|
||||
(eq (symbol-function tag) :quick-object-witness-check)
|
||||
tag))))
|
||||
|
||||
(defun cl--generic-class-parents (class)
|
||||
(let ((parents ())
|
||||
|
|
Loading…
Add table
Reference in a new issue