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

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