config.c: rename "struct config_source cf"
commit9b4a655302aae41a35752acfb61da1b43b4c7ce7
authorGlen Choo <chooglen@google.com>
Tue, 28 Mar 2023 17:51:54 +0000 (28 17:51 +0000)
committerJunio C Hamano <gitster@pobox.com>
Tue, 28 Mar 2023 20:03:27 +0000 (28 13:03 -0700)
treeb3dffe4fdcb84685e0a2b45df88a1ae2a7fda274
parente2016508e7690cddc789fb28879703082363549d
config.c: rename "struct config_source cf"

The "cf" name is a holdover from before 4d8dd1494e (config: make parsing
stack struct independent from actual data source, 2013-07-12), when the
struct was named config_file. Since that acronym no longer makes sense,
rename "cf" to "cs". In some places, we have "struct config_set cs", so
to avoid conflict, rename those "cs" to "set" ("config_set" would be
more descriptive, but it's much longer and would require us to rewrap
several lines).

Signed-off-by: Glen Choo <chooglen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
config.c