Merge branch 'ab/fewer-the-index-macros'

Squelch warnings from Coccinelle

* ab/fewer-the-index-macros:
  cocci: avoid "should ... be a metavariable" warnings
This commit is contained in:
Junio C Hamano 2022-12-01 18:38:07 +09:00
commit 805265fcf7

View File

@ -1,22 +1,26 @@
// the_index.* variables // the_index.* variables
@@ @@
identifier AC = active_cache;
identifier ACC = active_cache_changed;
identifier ACT = active_cache_tree;
@@ @@
( (
- active_cache - AC
+ the_index.cache + the_index.cache
| |
- active_cache_changed - ACC
+ the_index.cache_changed + the_index.cache_changed
| |
- active_cache_tree - ACT
+ the_index.cache_tree + the_index.cache_tree
) )
@@ @@
identifier AN = active_nr;
identifier f != prepare_to_commit; identifier f != prepare_to_commit;
@@ @@
f(...) {<... f(...) {<...
- active_nr - AN
+ the_index.cache_nr + the_index.cache_nr
...>} ...>}