summaryrefslogtreecommitdiff
path: root/builtin/log.c
diff options
context:
space:
mode:
authorMartin Ågren <martin.agren@gmail.com>2020-11-21 18:31:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-11-21 22:50:33 (GMT)
commit96313423a75fa8d88b6ecd5a15c21a7fbaf9e9be (patch)
tree19f731ed362d59f349c88f420ac5d41c0f9acc5e /builtin/log.c
parent1d3878799f8260968ea9f6a75a92c4daca1da133 (diff)
downloadgit-96313423a75fa8d88b6ecd5a15c21a7fbaf9e9be.zip
git-96313423a75fa8d88b6ecd5a15c21a7fbaf9e9be.tar.gz
git-96313423a75fa8d88b6ecd5a15c21a7fbaf9e9be.tar.bz2
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>
Diffstat (limited to 'builtin/log.c')
-rw-r--r--builtin/log.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin/log.c b/builtin/log.c
index eee4bec..cf41714 100644
--- a/builtin/log.c
+++ b/builtin/log.c
@@ -131,7 +131,6 @@ static int log_line_range_callback(const struct option *option, const char *arg,
static void init_log_defaults(void)
{
- init_grep_defaults();
init_diff_ui_defaults();
decoration_style = auto_decoration_style();