diff options
| author | jing <sillygod@livemail.tw> | 2020-11-06 10:46:43 +0800 |
|---|---|---|
| committer | jing <sillygod@livemail.tw> | 2020-11-06 10:46:43 +0800 |
| commit | 75e37c1707bee263cbae288d097ed78159a01961 (patch) | |
| tree | e226229b43b72f86cbd169185de1b032432019d1 | |
| parent | 17cfb7f3a50c5ebc8edafd6418531c17c2cbf47e (diff) | |
fix error symbol’s value as variable is void: union
| -rw-r--r-- | perspective.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perspective.el b/perspective.el index 5a4549d..e05213b 100644 --- a/perspective.el +++ b/perspective.el @@ -449,7 +449,7 @@ first." (defun persp-all-names (&optional not-frame) "Return a list of the perspective names for all frames. Excludes NOT-FRAME, if given." - (cl-reduce 'union + (cl-reduce 'cl-union (mapcar (lambda (frame) (unless (equal frame not-frame) |
