From: João Távora Date: Thu, 9 Nov 2017 21:25:36 +0000 (+0000) Subject: flymake-diag-region really returns nil if region is invalid (bug#29174) X-Git-Tag: emacs-26.0.91~341 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=89382780e1729861d98eca6e028ca1c62662a59f;p=emacs.git flymake-diag-region really returns nil if region is invalid (bug#29174) Reported by Lele Gaifax . * lisp/progmodes/flymake.el (flymake-diag-region): Really return nil if the region is invalid. --- diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 883f96747b9..ea63420dfae 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -343,7 +343,8 @@ region is invalid." (let* ((beg (fallback-bol)) (end (fallback-eol beg))) (cons beg end))))))) - (error (flymake-log :warning "Invalid region line=%s col=%s" line col)))) + (error (flymake-log :warning "Invalid region line=%s col=%s") + nil))) (defvar flymake-diagnostic-functions nil "Special hook of Flymake backends that check a buffer.