From: Stefan Monnier Date: Thu, 3 Jul 2025 21:09:56 +0000 (-0400) Subject: lisp/dired-x.el (dired-omit-lines): Don't quote `lambda` X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5a65a200f0bc2490438d8f7a47896f0c157dfe4f;p=emacs.git lisp/dired-x.el (dired-omit-lines): Don't quote `lambda` (cherry picked from commit 5f44515539eac4cd1ecb0057120475fe217bbc69) --- 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)