From 5bf9b9fa31f0362f678a90b0668c5523154ef0c2 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Wed, 5 Jun 2019 15:56:31 +0200 Subject: [PATCH] Renaming a variable. --- selector.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/selector.el b/selector.el index 98e8068..528d96d 100644 --- a/selector.el +++ b/selector.el @@ -73,7 +73,7 @@ Otherwise use the mode-line." :type 'hook :group 'selector) -(defcustom selector/quick-pick-recent-filter nil +(defcustom selector/quick-pick-recent-hide-filter nil "Regexp specifying which filenames should be hidden by `selector/quick-pick-recent'" :type 'string :group 'selector) @@ -400,7 +400,7 @@ filename." pattern-matching search implemented in `selector/select'. Without a prefix argument, hide files matching -`selector/quick-pick-recent-filter'. +`selector/quick-pick-recent-hide-filter'. With a prefix argument before the selection of the file per se, permits to edit it before opening." @@ -412,10 +412,10 @@ permits to edit it before opening." (let ((l (mapcar (lambda (s) (cons (selector/filename-to-string s) s)) - (if (and (not universal) selector/quick-pick-recent-filter) + (if (and (not universal) selector/quick-pick-recent-hide-filter) (delq nil (mapcar - (lambda (x) (and (not (string-match selector/quick-pick-recent-filter x)) x)) + (lambda (x) (and (not (string-match selector/quick-pick-recent-hide-filter x)) x)) recentf-list) ) recentf-list -- 2.20.1