mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
lisp/dired.el (dired-mode-immediate-menu): Don't quote lambda
This commit is contained in:
parent
5f44515539
commit
2cb7387e6f
1 changed files with 2 additions and 2 deletions
|
|
@ -2496,11 +2496,11 @@ Do so according to the former subdir alist OLD-SUBDIR-ALIST."
|
|||
|
||||
(easy-menu-define dired-mode-immediate-menu dired-mode-map
|
||||
"Immediate menu for Dired mode."
|
||||
'("Immediate"
|
||||
`("Immediate"
|
||||
["Edit File Names" wdired-change-to-wdired-mode
|
||||
:help "Put a Dired buffer in a mode in which filenames are editable"
|
||||
:keys "C-x C-q"
|
||||
:filter (lambda (x) (if (eq major-mode 'dired-mode) x))]
|
||||
:filter ,(lambda (x) (if (eq major-mode 'dired-mode) x))]
|
||||
["Create Empty file..." dired-create-empty-file
|
||||
:help "Create an empty file"]
|
||||
["Create Directory..." dired-create-directory
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue