grep: use designated initializers for `grep_defaults`
authorMartin Ågren <martin.agren@gmail.com>
Sat, 21 Nov 2020 18:31:08 +0000 (19:31 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sat, 21 Nov 2020 22:50:33 +0000 (14:50 -0800)
commit96313423a75fa8d88b6ecd5a15c21a7fbaf9e9be
tree19f731ed362d59f349c88f420ac5d41c0f9acc5e
parent1d3878799f8260968ea9f6a75a92c4daca1da133
grep: use designated initializers for `grep_defaults`

In 15fabd1bbd ("builtin/grep.c: make configuration callback more
reusable", 2012-10-09), we learned to fill a `static struct grep_opt
grep_defaults` which we can use as a blueprint for other such structs.

At the time, we didn't consider designated initializers to be widely
useable, but these days, we do. (See, e.g., cbc0f81d96 ("strbuf: use
designated initializers in STRBUF_INIT", 2017-07-10).)

Use designated initializers to let the compiler set up the struct and so
that we don't need to remember to call `init_grep_defaults()`.

Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/MyFirstObjectWalk.txt
builtin/grep.c
builtin/log.c
grep.c
grep.h
revision.c