diff options
author | 2024-10-21 16:27:49 +0200 | |
---|---|---|
committer | 2024-10-21 16:27:49 +0200 | |
commit | 2a8a234818a5be3811b0756f838d8eaefebeca8b (patch) | |
tree | e6e5d0518b345167bd77d27b8df12980d2ad1a12 | |
parent | update packages (diff) | |
download | doom-emacs-2a8a234818a5be3811b0756f838d8eaefebeca8b.tar.xz |
chore: replaced obsolete alias
-rw-r--r-- | gnus.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,7 +18,7 @@ (defun =gnus () "Activate `gnus' in its workspace." (interactive) - (if (featurep! :ui workspaces) + (if (modulep! :ui workspaces) (progn (+workspace-switch +gnus-workspace-name t) (doom/switch-to-scratch-buffer) @@ -32,7 +32,7 @@ (defun +gnus-cleanup-h () "Cleanup after a gnus session." (interactive) - (if (and (featurep! :ui workspaces) + (if (and (modulep! :ui workspaces) (+workspace-exists-p +gnus-workspace-name)) (+workspace/delete +gnus-workspace-name) (when (window-configuration-p +gnus--wconf) |