Fix flymake example backend conditions in the manual
* doc/misc/flymake.texi (An annotated example backend): Also react to `signal' process statuses (bug#51380).
This commit is contained in:
parent
0771d8939a
commit
f5b4bb4a6f
1 changed files with 1 additions and 1 deletions
|
@ -774,7 +774,7 @@ Binding,,, elisp, The Emacs Lisp Reference Manual}) to be active.
|
|||
;; Check that the process has indeed exited, as it might
|
||||
;; be simply suspended.
|
||||
;;
|
||||
(when (eq 'exit (process-status proc))
|
||||
(when (memq (process-status proc) '(exit signal))
|
||||
(unwind-protect
|
||||
;; Only proceed if `proc' is the same as
|
||||
;; `ruby--flymake-proc', which indicates that
|
||||
|
|
Loading…
Add table
Reference in a new issue