You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At snippet: (flymake-log 2 "%s: %d error(s), %d warning(s), %d info in %.2f second(s)" (buffer-name) err-count warn-count info-count (- (flymake-float-time) flymake-check-start-time))
How about check variable flymake-check-start-time to see whether it is nil because otherwise expression (- (flymake-float-time) flymake-check-start-time)) will fail with an error.
This behavior costed a emacs dummy (like me) one afternoon to locate it. It would be better to check flymake-check-start-time whether it equals to nil, don't you agree?
The text was updated successfully, but these errors were encountered:
Function flymake-post-syntax-check defined like follows:
At snippet:
(flymake-log 2 "%s: %d error(s), %d warning(s), %d info in %.2f second(s)" (buffer-name) err-count warn-count info-count (- (flymake-float-time) flymake-check-start-time))
How about check variable
flymake-check-start-time
to see whether it isnil
because otherwise expression(- (flymake-float-time) flymake-check-start-time))
will fail with an error.This behavior costed a emacs dummy (like me) one afternoon to locate it. It would be better to check
flymake-check-start-time
whether it equals tonil
, don't you agree?The text was updated successfully, but these errors were encountered: