diff options
| author | Nicholas Hubbard <nicholashubbard@posteo.net> | 2022-03-01 23:13:25 -0500 |
|---|---|---|
| committer | Nicholas Hubbard <nicholashubbard@posteo.net> | 2022-03-01 23:13:25 -0500 |
| commit | e98eb8fa4a6152cf0a40e1e6f2d4c1f203fbd709 (patch) | |
| tree | 32c17503714db3ebdfe8f7d4ff4071b7e05f4fc4 | |
| parent | bfc1ae1db3f5d9752e00fb55ce21b4e0d16e5af8 (diff) | |
Fixed variable name typo.
| -rw-r--r-- | perspective.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perspective.el b/perspective.el index 281eaab..4e03c60 100644 --- a/perspective.el +++ b/perspective.el @@ -1935,7 +1935,7 @@ NAME." (defun persp-perspectives-merged-with-base (&optional name) "Return a list of all perspectives that are merged to NAME." - (if (null base-persp-name) (setq name (persp-current-name))) + (if (null name) (setq name (persp-current-name))) (mapcar (lambda (m) (plist-get m :merged-perspective)) (persp-merges-with-base name))) |
