diff options
| author | Phillip Lord <phillip.lord@russet.org.uk> | 2019-05-29 11:15:03 +0200 |
|---|---|---|
| committer | Nathan Moreau <nathan.moreau@m4x.org> | 2019-09-26 20:24:33 +0200 |
| commit | 10ba29e7395af6bbc19ffcfd525008dc8a0a0db1 (patch) | |
| tree | 08920314674424012ac58eb8b85051bf23e62652 | |
| parent | b7237b0edfc6f8518c2f8c8a4d83638960af88e4 (diff) | |
| download | rust-mode-10ba29e7395af6bbc19ffcfd525008dc8a0a0db1.tar.gz | |
Silence byte-compiler
| -rw-r--r-- | rust-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-mode.el b/rust-mode.el index 85c1a23..e71207c 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -1471,7 +1471,7 @@ This is written mainly to be used as `end-of-defun-function' for Rust." (current-buffer)) :sentinel 'rust-format-diff-buffer-sentinel)) -(defun rust-format-diff-buffer-sentinel (process e) +(defun rust-format-diff-buffer-sentinel (process _e) (when (eq 'exit (process-status process)) (if (> (process-exit-status process) 0) (display-buffer "*rustfmt-diff*") |
