> @adjustment@
> expression ex;
> statement S;
> @@
> -LIST_FOR_EACH_ENTRY
> +hlist_for_each_entry
>  (..., ...,
> -ex,
>  ...)
>  S

This is not completely a good idea.  The ... in the argument list will
match a sequence of things, not a single thing.  It could be:

-LIST_FOR_EACH_ENTRY
+hlist_for_each_entry
 (e1,e2,
-ex,
 ...)
 S

julia
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

Reply via email to