[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Emacs-diffs] master d20acfe: Fix Gnus registry pruning and sorting,
From: |
Glenn Morris |
Subject: |
Re: [Emacs-diffs] master d20acfe: Fix Gnus registry pruning and sorting, and rename file |
Date: |
Fri, 19 Dec 2014 02:39:23 -0500 |
User-agent: |
Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) |
Some small comments on this change:
> +(make-obsolete-variable 'gnus-registry-max-pruned-entries nil "24.4")
I think you meant 25.1.
Also, you haven't made it obsolete, you've removed it entirely:
> -(defcustom gnus-registry-max-pruned-entries nil
> - "Maximum number of pruned entries in the registry, nil for unlimited."
> - :version "24.1"
> +(defcustom gnus-registry-prune-factor 0.1
[...]
> + :version "24.4"
Again, 25.1.
> +(defcustom gnus-registry-default-sort-function
> + #'gnus-registry-sort-by-creation-time
> + "Sort function to use when pruning the registry.
> +
> +Entries which sort to the front of the list will be pruned
> +first.
> +
> +This can slow pruning down. Set to nil to perform no sorting."
> + :version "24.4"
> + :group 'gnus-registry
> + :type 'symbol)
Again, 25.1. Also, a better :type would be:
(choice (const :tag "No sorting" nil) function)
Also, as a general comment, Gnus changes almost never seem to get NEWS
(or GNUS-NEWS) entries.
- Re: [Emacs-diffs] master d20acfe: Fix Gnus registry pruning and sorting, and rename file,
Glenn Morris <=
- Re: [Emacs-diffs] master d20acfe: Fix Gnus registry pruning and sorting, and rename file, Eric Abrahamsen, 2014/12/19
- Re: [Emacs-diffs] master d20acfe: Fix Gnus registry pruning and sorting, and rename file, Ted Zlatanov, 2014/12/20
- Re: [Emacs-diffs] master d20acfe: Fix Gnus registry pruning and sorting, and rename file, Eric Abrahamsen, 2014/12/20
- Re: [Emacs-diffs] master d20acfe: Fix Gnus registry pruning and sorting, and rename file, Ted Zlatanov, 2014/12/24
- Re: [Emacs-diffs] master d20acfe: Fix Gnus registry pruning and sorting, and rename file, Eric Abrahamsen, 2014/12/24
- Re: [Emacs-diffs] master d20acfe: Fix Gnus registry pruning and sorting, and rename file, Ted Zlatanov, 2014/12/24
- Re: [Emacs-diffs] master d20acfe: Fix Gnus registry pruning and sorting, and rename file, Eric Abrahamsen, 2014/12/24