Files
git/builtin
Brandon Williams b2100e5291 diff: remove DIFF_OPT_CLR macro
Remove the `DIFF_OPT_CLR` macro and instead set the flags directly.
This conversion is done using the following semantic patch:

	@@
	expression E;
	identifier fld;
	@@
	- DIFF_OPT_CLR(&E, fld)
	+ E.flags.fld = 0

	@@
	type T;
	T *ptr;
	identifier fld;
	@@
	- DIFF_OPT_CLR(ptr, fld)
	+ ptr->flags.fld = 0

Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-11-01 11:51:30 +09:00
..
2017-11-01 11:50:03 +09:00
2017-11-01 11:50:03 +09:00
2016-11-22 13:55:20 -08:00
2017-11-01 11:51:30 +09:00
2017-09-28 14:47:53 +09:00
2017-06-24 14:28:41 -07:00
2017-10-07 16:27:55 +09:00
2017-10-07 16:27:55 +09:00
2017-11-01 11:50:03 +09:00
2017-11-01 11:50:03 +09:00
2017-03-31 08:33:56 -07:00
2017-08-26 22:55:09 -07:00
2017-09-29 11:23:43 +09:00
2017-09-25 15:24:09 +09:00
2017-10-18 10:19:08 +09:00
2017-09-25 15:24:07 +09:00
2017-11-01 11:50:03 +09:00
2017-06-24 14:28:41 -07:00
2017-06-24 14:28:41 -07:00
2017-09-19 10:47:57 +09:00
2017-08-03 13:11:02 -07:00
2017-10-07 16:27:55 +09:00
2017-08-26 22:55:09 -07:00
2017-08-22 10:29:03 -07:00
2017-06-24 14:28:41 -07:00
2017-11-01 11:50:03 +09:00
2017-11-01 11:50:03 +09:00
2017-08-03 13:11:02 -07:00
2017-08-22 10:29:03 -07:00
2017-01-23 18:51:56 -08:00
2017-10-18 10:19:08 +09:00
2017-09-19 10:47:55 +09:00
2017-06-24 14:28:41 -07:00