Variable: recentf-arrange-by-rule-subfilter
recentf-arrange-by-rule-subfilter is a customizable variable defined
in recentf.el.gz.
Value
nil
Documentation
Function called by a rule based filter to filter sub-menu elements.
A nil value means no filter. See also recentf-menu-filter.
You can't use another rule based filter here.
Source Code
;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defcustom recentf-arrange-by-rule-subfilter nil
"Function called by a rule based filter to filter sub-menu elements.
A nil value means no filter. See also `recentf-menu-filter'.
You can't use another rule based filter here."
:group 'recentf-filters
:type '(choice (const nil) function)
:set (lambda (variable value)
(when (memq value '(recentf-arrange-by-rule
recentf-arrange-by-mode
recentf-arrange-by-dir))
(error "Recursive use of a rule based filter"))
(set-default variable value)))