* [PATCH] pathsec: make check for PATHSPEC_LITERAL more readable
@ 2024-12-18 3:53 AreaZR via GitGitGadget
2024-12-18 4:43 ` Kristoffer Haugsbakk
0 siblings, 1 reply; 2+ messages in thread
From: AreaZR via GitGitGadget @ 2024-12-18 3:53 UTC (permalink / raw)
To: git; +Cc: AreaZR, Seija Kijin
From: Seija Kijin <doremylover123@gmail.com>
This check is designed to die if global_magic
has the PATHSPEC_LITERAL and any other setting.
This can be written is a much more obvious way:
if global_magic has PATHSPEC_LITERAL, it can only
BE PATHSPEC_LITERAL, and if it isn't then there are
other settings.
Signed-off-by: Seija Kijin <doremylover123@gmail.com>
---
pathsec: make check for PATHSPEC_LITERAL more readable
This check is designed to die if global_magic has the PATHSPEC_LITERAL
and any other setting.
This can be written is a much more obvious way: if global_magic has
PATHSPEC_LITERAL, it can only BE PATHSPEC_LITERAL, and if it isn't then
there are other settings.
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-1453%2FAreaZR%2Fredundant-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-1453/AreaZR/redundant-v1
Pull-Request: https://github.com/git/git/pull/1453
pathspec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pathspec.c b/pathspec.c
index 0fc6f84a6e6..0af953d055d 100644
--- a/pathspec.c
+++ b/pathspec.c
@@ -313,7 +313,7 @@ static int get_global_magic(int element_magic)
global_magic |= PATHSPEC_ICASE;
if ((global_magic & PATHSPEC_LITERAL) &&
- (global_magic & ~PATHSPEC_LITERAL))
+ (global_magic != PATHSPEC_LITERAL))
die(_("global 'literal' pathspec setting is incompatible "
"with all other global pathspec settings"));
base-commit: d882f382b3d939d90cfa58d17b17802338f05d66
--
gitgitgadget
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] pathsec: make check for PATHSPEC_LITERAL more readable
2024-12-18 3:53 [PATCH] pathsec: make check for PATHSPEC_LITERAL more readable AreaZR via GitGitGadget
@ 2024-12-18 4:43 ` Kristoffer Haugsbakk
0 siblings, 0 replies; 2+ messages in thread
From: Kristoffer Haugsbakk @ 2024-12-18 4:43 UTC (permalink / raw)
To: Josh Soref, git; +Cc: AreaZR, Seija Kijin
Commit subject area: s/pathsec/pathspec/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-12-18 4:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-18 3:53 [PATCH] pathsec: make check for PATHSPEC_LITERAL more readable AreaZR via GitGitGadget
2024-12-18 4:43 ` Kristoffer Haugsbakk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox