Fix +workspace-p (obj is a struct, not hash table)

This commit is contained in:
Henrik Lissner 2017-07-08 21:08:35 +02:00
parent aba1dbce55
commit 30001ec3f4
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -50,7 +50,7 @@ perspectives."
(defun +workspace-p (obj)
"Return t if OBJ is a perspective hash table."
(and obj
(hash-table-p obj)
(cl-struct-p obj)
(perspective-p obj)))
;;;###autoload