diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2023-09-20 17:09:02 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2023-09-20 17:09:02 +0200 |
| commit | 2f31d95101196a28722ee176f2d39cd66002f7c0 (patch) | |
| tree | 89dfa4432d586e2097758203075d78b74a28852b | |
| parent | 89e7eb6e2e8771d0bf2b23026b7a85c8a6fcb155 (diff) | |
Fix custom type specifications
| -rw-r--r-- | disk-usage.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/disk-usage.el b/disk-usage.el index b8e91f2..28d229d 100644 --- a/disk-usage.el +++ b/disk-usage.el @@ -226,11 +226,11 @@ A file must pass all the filters to be included. See `disk-usage-add-filters' and `disk-usage-remove-filters'. You can add custom filters to this list." - :type '(repeat 'symbol)) + :type '(repeat symbol)) (defcustom disk-usage-default-filters '() "Filters to enable in new `disk-usage' buffers." - :type '(repeat 'symbol)) + :type '(repeat symbol)) (defvar-local disk-usage-filters nil "List of `disk-usage' filters in current buffer. |
