Browse Source

Fix bug

master
10sr 5 years ago
parent
commit
f9db231630
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 9 additions and 9 deletions
  1. +9
    -9
      emacs.el

+ 9
- 9
emacs.el View File

@@ -2071,7 +2071,7 @@ initializing."
(goto-char (point-min))
(when (re-search-forward "^would reformat .*$" nil t)
(setq result (list (flycheck-error-new-at
(point-max)
(point-min)
nil
'error
;;(format "Black: %s" (match-string 0))
@@ -2080,14 +2080,14 @@ initializing."
:checker checker))))
(goto-char (point-min))
(when (re-search-forward "^error: .*$" nil t)
(setq reslt (list (flycheck-error-new-at
(point-max)
nil
'error
;; Fix not to include absolute file path
(format "Black: %s" (match-string 0))
:buffer buffer
:checker checker))))))
(setq result (list (flycheck-error-new-at
(point-min)
nil
'error
;; Fix not to include absolute file path
(format "Black: %s" (match-string 0))
:buffer buffer
:checker checker))))))
result))

(defun my-flycheck-parse-unified-diff (output checker buffer)


Loading…
Cancel
Save