Skip to content

Commit

Permalink
Fix ibuffer loading error.
Browse files Browse the repository at this point in the history
  • Loading branch information
gcv committed Feb 18, 2024
1 parent 17a4a1a commit 460311b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Perspective was started in 2008 and this log was only added in 2021.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).


## Unreleased

### Fixed

- `persp-ibuffer-generate-filter-groups`: load `ibuf-ext` library if needed ([#202](https://github.com/nex3/perspective-el/issues/202)).


## [2.18] — 2022-09-20

### Added
Expand Down
2 changes: 2 additions & 0 deletions perspective.el
Original file line number Diff line number Diff line change
Expand Up @@ -2215,6 +2215,8 @@ were merged in from a previous call to `persp-merge'."
;;;###autoload
(defun persp-ibuffer-generate-filter-groups ()
"Create a set of ibuffer filter groups based on the persp name of buffers."
(unless (featurep 'ibuf-ext)
(require 'ibuf-ext))
(declare-function ibuffer-remove-duplicates "ibuf-ext.el")
(declare-function ibuffer-push-filter "ibuf-ext.el")
(declare-function ibuffer-pop-filter "ibuf-ext.el")
Expand Down

0 comments on commit 460311b

Please sign in to comment.