From: João Távora Date: Tue, 10 Oct 2017 11:47:46 +0000 (+0100) Subject: Fix two Flymake bugs X-Git-Tag: emacs-26.0.90~16 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=042b3cfbd2;p=emacs.git Fix two Flymake bugs * lisp/progmodes/flymake.el (define-fringe-bitmap): Protect against --without-x. (flymake--mode-line-format): Ensure mode-line's mouse-4 and mouse-5 work in their own windows. --- diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index c52dad722ce..245cd1ee577 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -142,24 +142,25 @@ Specifically, start it when the buffer is actually displayed." "If non-nil, moving to errors wraps around buffer boundaries." :type 'boolean) -(define-fringe-bitmap 'flymake-double-exclamation-mark - (vector #b00000000 - #b00000000 - #b00000000 - #b00000000 - #b01100110 - #b01100110 - #b01100110 - #b01100110 - #b01100110 - #b01100110 - #b01100110 - #b01100110 - #b00000000 - #b01100110 - #b00000000 - #b00000000 - #b00000000)) +(when (fboundp 'define-fringe-bitmap) + (define-fringe-bitmap 'flymake-double-exclamation-mark + (vector #b00000000 + #b00000000 + #b00000000 + #b00000000 + #b01100110 + #b01100110 + #b01100110 + #b01100110 + #b01100110 + #b01100110 + #b01100110 + #b01100110 + #b00000000 + #b01100110 + #b00000000 + #b00000000 + #b00000000))) (defvar-local flymake-timer nil "Timer for starting syntax check.") @@ -1040,13 +1041,15 @@ applied." ,(let ((map (make-sparse-keymap)) (type type)) (define-key map [mode-line mouse-4] - (lambda (_event) + (lambda (event) (interactive "e") - (flymake-goto-prev-error 1 (list type) t))) + (with-selected-window (posn-window (event-start event)) + (flymake-goto-prev-error 1 (list type) t)))) (define-key map [mode-line mouse-5] - (lambda (_event) + (lambda (event) (interactive "e") - (flymake-goto-next-error 1 (list type) t))) + (with-selected-window (posn-window (event-start event)) + (flymake-goto-next-error 1 (list type) t)))) map) help-echo ,(concat (format "%s diagnostics of type %s\n"