diff options
| author | mgmarlow <graham@mgmarlow.com> | 2023-06-13 19:09:04 -0700 |
|---|---|---|
| committer | mgmarlow <graham@mgmarlow.com> | 2023-06-13 19:09:04 -0700 |
| commit | 30caf05855122ab117635afdf920d64659c927aa (patch) | |
| tree | 2833e5b60770f7ea2b7ef47d016461da077dcc22 /.gitignore | |
| parent | a93359027caeb163aaa09df674e4e039313c9164 (diff) | |
| download | flymake-clippy-30caf05855122ab117635afdf920d64659c927aa.tar.gz | |
Improve filename matching
Rather than matching filenames within the regular expression (which
was using file-name-nondirectory), capture the full file name only in
the regexp so it can be compared against the entire
buffer-file-name. This fixes issues where Clippy suggestions with the
same file name (e.g. mod.rs) appear in every buffer matching that
name.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c531d98 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.elc |
