From 5a65a200f0bc2490438d8f7a47896f0c157dfe4f Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 3 Jul 2025 17:09:56 -0400 Subject: [PATCH] lisp/dired-x.el (dired-omit-lines): Don't quote `lambda` (cherry picked from commit 5f44515539eac4cd1ecb0057120475fe217bbc69) --- lisp/dired-x.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/dired-x.el b/lisp/dired-x.el index 1774049b056..941210dfdc2 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el @@ -132,7 +132,7 @@ option value: (restricted-sexp :tag "Variable with regexp value (default: `dired-re-exe')" :match-alternatives - ((lambda (obj) (and (symbolp obj) (boundp obj)))) + (,(lambda (obj) (and (symbolp obj) (boundp obj)))) :value dired-re-exe)) :group 'dired-x) -- 2.39.5