lisp/help-mode.el (help-mode-context-menu): Don't quote lambda

This commit is contained in:
Stefan Monnier 2025-07-05 19:32:50 -04:00
parent aa8afabd49
commit 8786dfedc9

View file

@ -89,9 +89,9 @@
(when (mouse-posn-property (event-start click) 'mouse-face)
(define-key menu [help-mode-push-button]
'(menu-item "Follow Link" (lambda (event)
(interactive "e")
(push-button event))
`(menu-item "Follow Link" ,(lambda (event)
(interactive "e")
(push-button event))
:help "Follow the link at click")))
menu)