mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-31 14:43:40 -05:00
Fix +workspace-p (obj is a struct, not hash table)
This commit is contained in:
@@ -50,7 +50,7 @@ perspectives."
|
|||||||
(defun +workspace-p (obj)
|
(defun +workspace-p (obj)
|
||||||
"Return t if OBJ is a perspective hash table."
|
"Return t if OBJ is a perspective hash table."
|
||||||
(and obj
|
(and obj
|
||||||
(hash-table-p obj)
|
(cl-struct-p obj)
|
||||||
(perspective-p obj)))
|
(perspective-p obj)))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
|
Reference in New Issue
Block a user