summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2021-08-01 18:08:01 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2021-08-01 18:08:01 -0400
commit1a7818824b8e6d4ef104bd00395e82ea6e69f4cc (patch)
treec3ebe0a826e76ed4d4a72d2885d8fc47518b0c0a /lisp
parenta6f67d60e13e06a8d07e54e63f93801a39b5c04b (diff)
downloademacs-1a7818824b8e6d4ef104bd00395e82ea6e69f4cc.tar.gz
emacs-1a7818824b8e6d4ef104bd00395e82ea6e69f4cc.tar.bz2
emacs-1a7818824b8e6d4ef104bd00395e82ea6e69f4cc.zip
* lisp/progmodes/flymake.el (flymake--mode-line-title): Don't quote lambda
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/flymake.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index e10602ab081..77a807f21ae 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -1245,13 +1245,13 @@ correctly.")
"Flymake"
mouse-face mode-line-highlight
help-echo
- (lambda (&rest whatever)
- (concat
- (format "%s known backends\n" (hash-table-count flymake--backend-state))
- (format "%s running\n" (length (flymake-running-backends)))
- (format "%s disabled\n" (length (flymake-disabled-backends)))
- "mouse-1: Display minor mode menu\n"
- "mouse-2: Show help for minor mode"))
+ ,(lambda (&rest _)
+ (concat
+ (format "%s known backends\n" (hash-table-count flymake--backend-state))
+ (format "%s running\n" (length (flymake-running-backends)))
+ (format "%s disabled\n" (length (flymake-disabled-backends)))
+ "mouse-1: Display minor mode menu\n"
+ "mouse-2: Show help for minor mode"))
keymap
,(let ((map (make-sparse-keymap)))
(define-key map [mode-line down-mouse-1]