Skip to content

Commit

Permalink
Exit code 112 should be ignored same as 102
Browse files Browse the repository at this point in the history
  • Loading branch information
alanhamlett committed Nov 10, 2022
1 parent 43cba29 commit ef92382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wakatime-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ the wakatime subprocess occurs."
(when (memq (process-status process) '(exit signal))
(kill-buffer (process-buffer process))
(let ((exit-status (process-exit-status process)))
(when (and (not (= 0 exit-status)) (not (= 102 exit-status)))
(when (and (not (= 0 exit-status)) (not (= 102 exit-status)) (not (= 112 exit-status)))
(when wakatime-disable-on-error
(wakatime-mode -1)
(global-wakatime-mode -1))
Expand Down

0 comments on commit ef92382

Please sign in to comment.