From: João Távora Date: Thu, 9 Nov 2017 20:33:02 +0000 (+0000) Subject: Sort entries of the Flymake diagnostics buffer (bug#29175) X-Git-Tag: emacs-26.0.91~344 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b28de57411;p=emacs.git Sort entries of the Flymake diagnostics buffer (bug#29175) Reported by Lele Gaifax . * lisp/progmodes/flymake.el (flymake--diagnostics-buffer-entries): Sort results of flymake-diagnostics. --- diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index e833cd949ee..921ac913309 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -1137,7 +1137,8 @@ POS can be a buffer position or a button" (defun flymake--diagnostics-buffer-entries () (with-current-buffer flymake--diagnostics-buffer-source - (cl-loop for diag in (flymake-diagnostics) + (cl-loop for diag in + (cl-sort (flymake-diagnostics) #'< :key #'flymake-diagnostic-beg) for (line . col) = (save-excursion (goto-char (flymake--diag-beg diag))